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 booleanshowLabel Show auxiliary label (groupLabel) booleanlineDashArray Line dash-array stringlineColorType Line color type ColorTypelabelColorType Label color type ColorTypelabelTextColorType Label text color type ColorTypelabelTextFormat Label text format string | ((text: any) => string)labelPadding Label padding numberlabelRotate 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
}