Hi guys,
I'm creating a chart that displays trend of certain activities in an organisation. I am using a line chart that will draw a line for each month for a set of known activities.
It is essential that I have shapes at each data point which I can do via the LineRenderProcessor post processor. I would like to have these shapes filled with the same color as the line color .
I was under the impression that this should now be implicit if you follow what the docs say and Looking at the docs from Ulf's latest cewolf distribution the
java docs say for the LineRendereProcessor attributes:
useFillPaint whether to use the fill paint to draw the interior of shapes; default false
fillPaint the color to be used for interior of shapes; default: the line color
so I am using the above as follows
and not using the fillPaint attribute in order the invoke the default behaviour which is to fill the shapes with the line color, But this isn't happening. My shapes for the different lines need to have different colors (preferably line color) for easy
interpretation of chart.
Thanks