I am using an area series that I would like the area between the zero x axis and the series to be filled in.
But when I add negative values, it fills in the area between the lowest Y margin axis and the value of the axis. Here's an example:
Is something like that possible?
Thank you,
Ed Dressel
Negative values with an area series
-
- Advanced
- Posts: 228
- Joined: Tue Aug 28, 2007 12:00 am
- Location: Oregon, USA
-
- Advanced
- Posts: 228
- Joined: Tue Aug 28, 2007 12:00 am
- Location: Oregon, USA
Hi Ed Dressel,
Note that there are two properties more logic for achieving it:
The area series, by default comes from "infinite". When you have two areas and set them as stacked, the second area shouldn't start at "infinite" but just over the first area. So that's why with stacked areas, the first one has origin to at zero.
I hope this helps.
Note that there are two properties more logic for achieving it:
Code: Select all
Series1.UseYOrigin := true;
Series1.YOrigin := 0;
I hope this helps.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |