Hi,
Is there a way, in a bar charts series, to not display the null points (not empty spaces)?
Thank you
Bar Charts Series and Null points
Re: Bar Charts Series and Null points
Hi Rousseau,
Setting a value to be a null point only changes its color to transparent. The other points aren't reordered when you set a point as null.
Note when you add a point with only YValue, the XValue is internally created.
If you want the value to completely disappear, I'd just remove it and reorder the points manually.
Setting a value to be a null point only changes its color to transparent. The other points aren't reordered when you set a point as null.
Note when you add a point with only YValue, the XValue is internally created.
If you want the value to completely disappear, I'd just remove it and reorder the points manually.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 31
- Joined: Fri Oct 13, 2006 12:00 am
- Location: St-Jean-Port-Joli, Canada
- Contact:
Re: Bar Charts Series and Null points
Hi,
Thank you for your quick answer. I did not know that I could use the method AddXY() on Bar chart series. I always use Add() and AddNull().
I tried to use AddXY() but, it the same thing. I don't know if it is possible, but I would like to do not display empty spaces if i dont have data?
Thank you for your quick answer. I did not know that I could use the method AddXY() on Bar chart series. I always use Add() and AddNull().
I tried to use AddXY() but, it the same thing. I don't know if it is possible, but I would like to do not display empty spaces if i dont have data?
Re: Bar Charts Series and Null points
Hi,
I think you are trying to do something similar to this customer. It's a Java thread but the same should apply here.
http://www.teechart.net/support/viewtop ... 10&t=13073
I think you are trying to do something similar to this customer. It's a Java thread but the same should apply here.
http://www.teechart.net/support/viewtop ... 10&t=13073
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 31
- Joined: Fri Oct 13, 2006 12:00 am
- Location: St-Jean-Port-Joli, Canada
- Contact:
Re: Bar Charts Series and Null points
Hi,
Yes, it is similar. I do not want add an AxisBreak but, I would like change the position in the series. I know how get the x position with CalcXPos CalcXPosValue and CalcXSizeValue, but how set the new position?
Thank your for your help.
Yes, it is similar. I do not want add an AxisBreak but, I would like change the position in the series. I know how get the x position with CalcXPos CalcXPosValue and CalcXSizeValue, but how set the new position?
Thank your for your help.
Re: Bar Charts Series and Null points
Hi Rousseau,
However, in your case maybe you could just have 10 dummy series for the legend. These are series without points but the appropriate color and title for the legend.
And then a unique Bar series with all the points, so all the values in it will be one next to the other. Of course all these values will have their own color. And this series could have ShowInLegend = false.
The only way is to change the XValue of the point.Rousseau wrote:I would like change the position in the series. I know how get the x position with CalcXPos CalcXPosValue and CalcXSizeValue, but how set the new position?
However, in your case maybe you could just have 10 dummy series for the legend. These are series without points but the appropriate color and title for the legend.
And then a unique Bar series with all the points, so all the values in it will be one next to the other. Of course all these values will have their own color. And this series could have ShowInLegend = false.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |