Last updated

API / geotoolkit / charts / LineChart / LineChart

Namespace: LineChart

charts.LineChart.LineChart

Table of contents

Type Aliases

Contents

Type Aliases

Options

Ƭ 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: 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: Series & { fillstyle?: Type ; linestyle?: Type ; linestylecallback?: NonNullable<DataModel["linestylecallbacks"]>[0] ; selectionsymbol?: SeriesSymbolOptions ; symbol?: SeriesSymbolOptions ; visible?: boolean }

Define series properties


SeriesWithData

Ƭ SeriesWithData: Merge<Series, { data: number[] | string[] | string ; unit?: string }>