-
Notifications
You must be signed in to change notification settings - Fork 14
Grid
Thomas Möller edited this page Apr 12, 2024
·
9 revisions
Grid
This class contains methods and properties related to the grid.
- none
The following sections contain a detailed description of the methods and properties.
With this property you can specify if the gridlines of a radial axis are round or square.
This property only has effect on radial axis.
False
myChart.Chart.RadialAxis.Grid.Circular= True
--
With this property you can specify the color of the gridlines. By default, the color is grey.
You can specify the background color in four ways:
- rgba-code: rgba(77,22,66,0.5)
- rgb-code: rgb(128,255,73)
- hex-code: #FF77A1
- color name: green
{empty}, which leads to grey
myChart.Chart.XAxis.Grid.Color = "red"
--
With this property you can specify the width of the gridlines
1
myChart.Chart.YAxis.Grid.LineWidth = 2
--
With this property you can specify, if the grid lines for the axis are shown.
True
myChart.Chart.RadialAxis.Grid.Show = True
--