API / geotoolkit / controls / shapes / TernaryChart / TernaryChart
shapes.TernaryChart.TernaryChart
Type Aliases
Type Aliases
Ƭ Data: Object
| Name | Type | Description |
|---|---|---|
data? | Visual[] | contains list of visuals in this chart |
name? | string | name of ternary chart object |
ternarygrid? | TernaryGrid | reference to ternary grid |
Ƭ Hits: Object
| Name | Type |
|---|---|
indices | number[] |
points | { color: number ; index: number ; left: number ; right: number ; size: number ; top: number }[] |
series | number |
Ƭ Options: Options & { data?: Visual[] ; ternarygrid?: TernaryGrid }
Ƭ OptionsOut: OptionsOut & { ternarygrid?: TernaryGrid }
ternary chart options
Ƭ Visual: Object
Defines Ternary Chart Visual
| Name | Type | Description |
|---|---|---|
colorprovider? | ColorProvider | - |
fillstyle? | Type | must be provided if polygon should be filled |
hightlightedsymbol? | SymbolShape | symbol to be used when mouse cursor hover over data point |
linestyle? | Type | must be provided if points should be connected with line |
name? | string | string contains name of visual |
symbol? | SymbolShape | symbol to display data points |
values? | { color?: number[] ; left?: number[] ; right?: number[] ; size?: number[] ; top?: number[] } | object contains top, left or right value arrays, only two of them are necessary size and color are optional |
values.color? | number[] | color values |
values.left? | number[] | left values |
values.right? | number[] | right values |
values.size? | number[] | size values |
values.top? | number[] | top values |