API / geotoolkit / charts / Axis / Axis
Type Aliases
Ƭ ColorBarAxisOptions: Object
| Name | Type | Description |
|---|---|---|
autolabelrotation? | boolean | automatic label rotation |
autolabelrotationangle? | number | auto rotation angle for axis |
colorprovider? | ColorProvider | Color provider |
Ƭ EventMap: EventMap & { DataTypeUpdated: DataType ; Updated: Options }
Ƭ GeneralAxis: Object
| Name | Type | Description |
|---|---|---|
datalimits? | boolean | True to adjust limits & color provider based on connected charts data, false to use fixed limits from the color provider (true by default) |
dimension? | AxisDimension | Options & { type?: AxisType } | axis dimension object to use for the axis automatic limits calculation |
flip? | boolean | true to flip axis limits (connected charts will be flipped as well) |
grid? | Grid | { edge?: TickOptions ; major?: TickOptions ; minor?: TickOptions ; visible?: boolean } | options for grid connected to the axis |
labelstyle? | Type | tick label text style |
location? | AnnotationLocation | axis location |
max? | null | number | axis maximum limit |
min? | null | number | axis minimum limit |
tickstyle? | Type | style for all tick lines |
Ƭ Options: Omit<AxisOptions, "margins"> & GeneralAxis & ColorBarAxisOptions & { type?: ColorBar } | { crosshair?: LabelSettings ; displayontop?: boolean ; type?: Exclude<AxisType, ColorBar> } & { crosshair?: LabelSettings ; datatype?: DataType ; labels?: string[] | number[] | string ; size?: number ; tickgenerator?: TickGenerator | Options | Options }
axis options
Ƭ OptionsOut: Omit<OptionsOut, "margins"> & { datalimits?: boolean ; datatype?: DataType ; dimension: { neatlimits: boolean } ; flip?: boolean ; grid?: { visible?: boolean } ; labels?: string[] | number[] | string ; labelstyle?: TextStyle ; location?: AnnotationLocation ; max?: null | number ; min?: null | number ; size?: number ; tickstyle?: LineStyle ; type?: AxisType }