Skip to content

Divider Properties

Usage

In every chart you can set properties of dividers between labels and chart, indicators and chart

Property Type Default Description
enabled Boolean true specifies dividers visibility
xAxisProperties LineProperties LineProperties(..) specifies horizontal divider properties
yAxisProperties LineProperties LineProperties(..) specifies vertical divider properties

Example

1
2
3
4
5
6
7
8
9
val dividerProperties = DividerProperties(
    enabled = true,
    xAxisProperties = LineProperties(
    ...
    ),
    yAxisProperties = LineProperties(
    ...
    )
)