UNPKG

ag-charts-enterprise

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

46 lines (45 loc) 1.75 kB
import type { AgBoxPlotSeriesItemStylerParams, AgBoxPlotSeriesOptions, AgBoxPlotSeriesStyle, AgBoxPlotSeriesStylerParams, AgBoxPlotSeriesTooltipRendererParams, Styler } from 'ag-charts-community'; import { _ModuleSupport } from 'ag-charts-community'; import type { InternalAgColorType } from 'ag-charts-core'; import { BaseProperties } from 'ag-charts-core'; declare const AbstractBarSeriesProperties: typeof _ModuleSupport.AbstractBarSeriesProperties; declare class BoxPlotSeriesCap extends BaseProperties { lengthRatio: number; } declare class BoxPlotSeriesWhisker extends BaseProperties { stroke?: string; strokeWidth?: number; strokeOpacity?: number; lineDash?: number[]; lineDashOffset?: number; } export declare class BoxPlotSeriesProperties extends AbstractBarSeriesProperties<AgBoxPlotSeriesOptions> { xKey: string; minKey: string; q1Key: string; medianKey: string; q3Key: string; maxKey: string; xName?: string; yName?: string; minName?: string; q1Name?: string; medianName?: string; q3Name?: string; maxName?: string; fill: InternalAgColorType; fillOpacity: number; stroke: string; strokeWidth: number; strokeOpacity: number; lineDash: number[]; lineDashOffset: number; cornerRadius: number; styler?: Styler<AgBoxPlotSeriesStylerParams<unknown, unknown>, AgBoxPlotSeriesStyle>; itemStyler?: Styler<AgBoxPlotSeriesItemStylerParams<unknown>, AgBoxPlotSeriesStyle>; readonly cap: BoxPlotSeriesCap; readonly whisker: BoxPlotSeriesWhisker; readonly tooltip: _ModuleSupport.SeriesTooltip<Omit<AgBoxPlotSeriesTooltipRendererParams<any, unknown>, "context">>; toJson(): AgBoxPlotSeriesOptions<any, unknown>; } export {};