Hi, I'm using a Stacked Area Chart, and I have problem:
For example, if my DataSource return 100 values for ValueDataColumn property, the chart show 100 points, each one for each row in my DataSource.
What I need is to set the property STEP for the points which are showing in the chart.
I modify this property Step property to 30 for XAxis.SeriesLabels.Step and XAxis.Ticks.Step and they are working fine.
The problem is with the points of the chart. The chart show all points (100).
I attach a capture with my chart.
Greetings.
Stacked Area Chart and Step property
Stacked Area Chart and Step property
- Attachments
-
- chart.png (20.67 KiB) Viewed 1061 times
Re: Stacked Area Chart and Step property
These are all the Step properties I have setted to 30:
StiStackedAreaArea area = new StiStackedAreaArea();
((StiAxis)area.XAxis).Ticks.Step = 30;
area.XAxis.Ticks.Step = 30;
area.XAxis.Step = 30;
StiStackedAreaSeries serie = new StiStackedAreaSeries();
serie.SeriesLabels.Step = 30;
And I still don't have the results that I want.
Grettings.
StiStackedAreaArea area = new StiStackedAreaArea();
((StiAxis)area.XAxis).Ticks.Step = 30;
area.XAxis.Ticks.Step = 30;
area.XAxis.Step = 30;
StiStackedAreaSeries serie = new StiStackedAreaSeries();
serie.SeriesLabels.Step = 30;
And I still don't have the results that I want.
Grettings.
Re: Stacked Area Chart and Step property
Hello.
Please, specify do you want to set the step property for the markers of the series and leave the chart as is or you want to simplify chart.
Thank you.
Please, specify do you want to set the step property for the markers of the series and leave the chart as is or you want to simplify chart.
Thank you.