Hi,
How can I create a half-moon or pie using the library as shown in the picture?
I need multiple slices on a 180 degrees pie so I'm not sure if a gauge or dial is appropriate for this.
Thanks!
Half Pie
Re: Half Pie
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Half Pie
Thanks for the help - it's working now. Can I do the same (multiple slices representing data) on a half circular gauge?
Re: Half Pie
Hi,
You can have a half circular gauge setting the TotalAngle and DisplayTotalAngle properties:
On the other hand, you refer to the red and green lines in the circular gauges. Maybe you would like to have more lines highlighting different sections in the gauge. I'm afraid it's not possible right now but it's on the wish list to be implemented in future releases (TJ71016736).
If you are trying to do something different to the options commented above, please try to arrange a simple example project we can run as-is to reproduce the problem here.
I'm not sure to understand what do you exactly mean.ecm wrote:Can I do the same (multiple slices representing data) on a half circular gauge?
You can have a half circular gauge setting the TotalAngle and DisplayTotalAngle properties:
Code: Select all
CircularGauge circ1 = new CircularGauge(tChart1.getChart());
circ1.setValue(10);
circ1.setTotalAngle(180);
circ1.setDisplayTotalAngle(180);
If you are trying to do something different to the options commented above, please try to arrange a simple example project we can run as-is to reproduce the problem here.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |