import type { ChartErrorBars } from "./ChartErrorBars.js"; import type { ChartPointFill } from "./ChartPointFill.js"; import type { ChartTrendline } from "./ChartTrendline.js"; import type { DataLabels } from "./DataLabels.js"; export type ChartSeries = { name: string; nameRef?: string; color?: string; values: Array; valuesRef?: string; xValues: Array; xValuesRef?: string; bubbleSizes: Array; bubbleSizesRef?: string; pointColors: Array; pointExplosions: Array; pointFills: Array; dataLabels?: DataLabels; axisGroup?: string; chartType?: string; markerSymbol?: string; lineWidthEmu?: number; lineDash?: string; lineNone?: boolean; trendlines: Array; errorBars?: ChartErrorBars; };