Hi,
I would like to create chart with states. Now I've solved the problem by using line series like at the picture A),
but I would like to get something like at the picture B). Is there any series that give such a possiblity ?
[img]states.JPG[/img]
State chart
State chart
- Attachments
-
- states.JPG (28.32 KiB) Viewed 3442 times
Re: State chart
Hi jarp,
I think that the series you are looking for is the Area series:
I think that the series you are looking for is the Area series:
Code: Select all
Area area1 = new Area(tChart1.Chart);
area1.Color = line1.Color;
area1.LinePen.Color = area1.Color;
area1.DataSource = line1;
area1.UseOrigin = true;
area1.Origin = 0;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: State chart
Thanks a lot. Your solution works.