|
Stackrose ->zone border color, PHP |
Posted by wolkenlos on Mar-01-2022 20:28 |
|
Hi,
is it possible to change the color (transparent would be fine, in the example you see why) of the border around a zone? By default, you can only specify the color of the zone by using addZone, the border is black.
Thanks
|
Re: Stackrose ->zone border color, PHP |
Posted by Peter Kwan on Mar-01-2022 23:02 |
|
Hi wolkenlos,
Yes, you can change the border color. The AngularAxis.addZone API allows you to specify both the fill color and the edge color. The edge color is the border color. See:
https://www.advsofteng.com/doc/cdphp.htm#AngularAxis.addZone.htm
In our sample code, we use 0 as the edge color, which is black. (0 is the same as 0x000000.) You can use Transparent if you like.
Regards
Peter Kwan |
Re: Stackrose ->zone border color, PHP |
Posted by wolkenlos on Mar-03-2022 15:19 |
|
Thank you Peter!
It's excellently documented. I missed that, sorry. |
|