Stacked Area Chart and Step property

Stimulsoft Reports.NET discussion
Post Reply
jorgeto
Posts: 42
Joined: Tue Aug 16, 2011 4:49 pm
Location: Lima

Stacked Area Chart and Step property

Post by jorgeto »

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.
Attachments
chart.png
chart.png (20.67 KiB) Viewed 1060 times
jorgeto
Posts: 42
Joined: Tue Aug 16, 2011 4:49 pm
Location: Lima

Re: Stacked Area Chart and Step property

Post by jorgeto »

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.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Stacked Area Chart and Step property

Post by HighAley »

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.
Post Reply