Page 1 of 1
Scatter chart
Posted: Thu Jan 28, 2010 8:52 am
by unison
Good day,
I have been using the scatter chart in one of my reports. How do you increase the size of the points/circles?
Regards,
David
Scatter chart
Posted: Tue Feb 02, 2010 1:05 am
by Andrew
Hello,
Yes, it is possible. Please use the Marker.Size property of the Scatter Series.
Thank you.
Scatter chart
Posted: Wed Feb 03, 2010 7:04 am
by unison
Hi Andrew,
Is their anyway to set this value at runtime?
Regard,
David
Scatter chart
Posted: Wed Feb 03, 2010 7:41 am
by Edward
Hi David,
Yes, that is possible.
Please use the following command:
(Chart1.Series[0] as Stimulsoft.Report.Chart.StiScatterSeries).Marker.Size = 5;
Thank you.
Scatter chart
Posted: Wed Feb 03, 2010 8:37 am
by unison
Hi Edward,
I will give that you a try. Is there no way to set this value within the report designer, via a property or expression?
Regards,
David
Scatter chart
Posted: Thu Feb 04, 2010 2:55 am
by Edward
Hi David,
In the BeforePrintEvent of the Chart you could set that parameter in code too, or directly in the designer in the Series dialog:
Thank you.