Page 1 of 1

Change colour on LightningChart

Posted: Sun Nov 27, 2022 2:16 pm
by Norrbotten68
Hi
how can I change the colour of LightningChart sides which are not axis.
Please see attached here image for better understanding. I need to change the orange line to white (for example). I know how to do this for axisY and axisX , but those lines are not any of them.

Re: Change colour on LightningChart

Posted: Mon Nov 28, 2022 7:22 am
by Arction_LasseP
Hello,

You can try changing the Border property.

Code: Select all

_chart.ViewXY.Border.Color = Color.White;
This changes the color of the orange border around the chart. There is also Border.Visible, which can be used to hide the whole border if needed.

Best regards,
Lasse