API / geotoolkit / charts / LineChart / LineChart
Type Aliases
Type Aliases
Ƭ Options: Options & { baseline?: number ; gapfillcutoffvalue?: number ; gapvalue?: number ; selectionsymbol?: SymbolOptions ; series?: { x?: string | number[] | SeriesWithData ; y?: string | number[] | SeriesWithData | SeriesWithData[] ; z?: string | number[] | SeriesWithData | SeriesWithData[] } ; showinterpolatedvalue?: boolean ; spline?: boolean ; symbol?: SymbolOptions }
chart options
Ƭ OptionsOut: OptionsOut & { baseline?: number ; selectionsymbol: { height?: number ; width?: number } ; series: { x: Series ; y: SeriesWithData[] ; z?: Series[] } ; showinterpolatedvalue?: boolean ; spline?: boolean ; symbol: { height?: number ; width?: number } }
Ƭ Series: Series & { fillstyle?: Type ; linestyle?: Type ; linestylecallback?: NonNullable<DataModel["linestylecallbacks"]>[0] ; selectionsymbol?: SeriesSymbolOptions ; symbol?: SeriesSymbolOptions ; visible?: boolean }
Define series properties
Ƭ SeriesWithData: Merge<Series, { data: number[] | string[] | string ; unit?: string }>