GroupAux
Name: Group Auxiliary Line
Description: Auxiliary line for the Group axis (default is X axis) used in Grid data types
params$
Type:
Partial<GroupAuxParams>
Fields:
Name Description Type showLine Show auxiliary line boolean
showLabel Show auxiliary label (groupLabel) boolean
lineDashArray Line dash-array string
lineColorType Line color type ColorType
labelColorType Label color type ColorType
labelTextColorType Label text color type ColorType
labelTextFormat Label text format string | ((text: any) => string)
labelPadding Label padding number
labelRotate Label rotation angle number
Detailed Types
type ColorType = 'none' | 'label' | 'labelContrast' | 'primary' | 'secondary' | 'background'
- Default values:
{
showLine: true,
showLabel: true,
lineDashArray: '3, 3',
lineColorType: 'primary',
labelColorType: 'primary',
labelTextColorType: 'background',
labelTextFormat: text => text,
labelPadding: 20,
labelRotate: 0
}