import * as _angular_core from '@angular/core'; import { OnChanges, OnDestroy, SimpleChanges } from '@angular/core'; import * as apexcharts from 'apexcharts'; interface ApexOptions { annotations?: ApexAnnotations; chart?: ApexChart; colors?: any[]; dataLabels?: ApexDataLabels; series?: ApexAxisChartSeries | ApexNonAxisChartSeries; stroke?: ApexStroke; labels?: string[]; legend?: ApexLegend; fill?: ApexFill; tooltip?: ApexTooltip; plotOptions?: ApexPlotOptions; responsive?: ApexResponsive[]; markers?: ApexMarkers; noData?: ApexNoData; xaxis?: ApexXAxis; yaxis?: ApexYAxis | ApexYAxis[]; forecastDataPoints?: ApexForecastDataPoints; grid?: ApexGrid; states?: ApexStates; title?: ApexTitleSubtitle; subtitle?: ApexTitleSubtitle; theme?: ApexTheme; } interface ApexDropShadow { enabled?: boolean; top?: number; left?: number; blur?: number; opacity?: number; color?: string; } /** * Main Chart options * See https://apexcharts.com/docs/options/chart/ */ interface ApexChart { width?: string | number; height?: string | number; type: ChartType; foreColor?: string; fontFamily?: string; background?: string; offsetX?: number; offsetY?: number; dropShadow?: ApexDropShadow & { enabledOnSeries?: undefined | number[]; color?: string | string[]; }; events?: { animationEnd?(chart: any, options?: any): void; beforeMount?(chart: any, options?: any): void; mounted?(chart: any, options?: any): void; updated?(chart: any, options?: any): void; mouseMove?(e: any, chart?: any, options?: any): void; mouseLeave?(e: any, chart?: any, options?: any): void; click?(e: any, chart?: any, options?: any): void; legendClick?(chart: any, seriesIndex?: number, options?: any): void; markerClick?(e: any, chart?: any, options?: any): void; xAxisLabelClick?(e: any, chart?: any, options?: any): void; selection?(chart: any, options?: any): void; dataPointSelection?(e: any, chart?: any, options?: any): void; dataPointMouseEnter?(e: any, chart?: any, options?: any): void; dataPointMouseLeave?(e: any, chart?: any, options?: any): void; beforeZoom?(chart: any, options?: any): void; beforeResetZoom?(chart: any, options?: any): void; zoomed?(chart: any, options?: any): void; scrolled?(chart: any, options?: any): void; brushScrolled?(chart: any, options?: any): void; }; brush?: { enabled?: boolean; autoScaleYaxis?: boolean; target?: string; targets?: string[]; }; id?: string; group?: string; nonce?: string; locales?: ApexLocale[]; defaultLocale?: string; parentHeightOffset?: number; redrawOnParentResize?: boolean; redrawOnWindowResize?: boolean | Function; sparkline?: { enabled?: boolean; }; stacked?: boolean; stackOnlyBar?: boolean; stackType?: "normal" | "100%"; toolbar?: { show?: boolean; offsetX?: number; offsetY?: number; tools?: { download?: boolean | string; selection?: boolean | string; zoom?: boolean | string; zoomin?: boolean | string; zoomout?: boolean | string; pan?: boolean | string; reset?: boolean | string; customIcons?: { icon?: string; title?: string; index?: number; class?: string; click?(chart?: any, options?: any, e?: any): any; }[]; }; export?: { csv?: { filename?: undefined | string; columnDelimiter?: string; headerCategory?: string; headerValue?: string; categoryFormatter?(value?: number): any; valueFormatter?(value?: number): any; }; svg?: { filename?: undefined | string; }; png?: { filename?: undefined | string; }; width?: number; scale?: number; }; autoSelected?: "zoom" | "selection" | "pan"; }; zoom?: { enabled?: boolean; type?: "x" | "y" | "xy"; autoScaleYaxis?: boolean; allowMouseWheelZoom?: boolean; zoomedArea?: { fill?: { color?: string; opacity?: number; }; stroke?: { color?: string; opacity?: number; width?: number; }; }; }; selection?: { enabled?: boolean; type?: string; fill?: { color?: string; opacity?: number; }; stroke?: { width?: number; color?: string; opacity?: number; dashArray?: number; }; xaxis?: { min?: number; max?: number; }; yaxis?: { min?: number; max?: number; }; }; animations?: { enabled?: boolean; speed?: number; animateGradually?: { enabled?: boolean; delay?: number; }; dynamicAnimation?: { enabled?: boolean; speed?: number; }; }; } interface ApexStates { hover?: { filter?: { type?: string; }; }; active?: { allowMultipleDataPointsSelection?: boolean; filter?: { type?: string; }; }; } /** * Chart Title options * See https://apexcharts.com/docs/options/title/ */ interface ApexTitleSubtitle { text?: string; align?: "left" | "center" | "right"; margin?: number; offsetX?: number; offsetY?: number; floating?: boolean; style?: { fontSize?: string; fontFamily?: string; fontWeight?: string | number; color?: string; }; } /** * Chart Series options. * Use ApexNonAxisChartSeries for Pie and Donut charts. * See https://apexcharts.com/docs/options/series/ */ type ApexAxisChartSeries = { name?: string; type?: string; color?: string; group?: string; zIndex?: number; hidden?: boolean; data: (number | null)[] | { x: any; y: any; fill?: ApexFill; fillColor?: string; strokeColor?: string; meta?: any; goals?: { name?: string; value: number; strokeHeight?: number; strokeWidth?: number; strokeColor?: string; strokeDashArray?: number; strokeLineCap?: "butt" | "square" | "round"; }[]; barHeightOffset?: number; columnWidthOffset?: number; }[] | [number, number | null][] | [number, (number | null)[]][] | number[][]; }[]; type ApexNonAxisChartSeries = number[]; /** * Options for the line drawn on line and area charts. * See https://apexcharts.com/docs/options/stroke/ */ interface ApexStroke { show?: boolean; curve?: "smooth" | "straight" | "stepline" | "monotoneCubic" | ("smooth" | "straight" | "stepline" | "monotoneCubic")[]; lineCap?: "butt" | "square" | "round"; colors?: any[]; width?: number | number[]; dashArray?: number | number[]; fill?: ApexFill; } interface ApexAnnotations { yaxis?: YAxisAnnotations[]; xaxis?: XAxisAnnotations[]; points?: PointAnnotations[]; texts?: TextAnnotations[]; images?: ImageAnnotations[]; } interface AnnotationLabel { borderColor?: string; borderWidth?: number; borderRadius?: number; text?: string; textAnchor?: string; offsetX?: number; offsetY?: number; style?: AnnotationStyle; position?: string; orientation?: string; mouseEnter?: Function; mouseLeave?: Function; click?: Function; } interface AnnotationStyle { background?: string; color?: string; fontSize?: string; fontFamily?: string; fontWeight?: string | number; cssClass?: string; padding?: { left?: number; right?: number; top?: number; bottom?: number; }; } interface XAxisAnnotations { id?: number | string; x?: null | number | string; x2?: null | number | string; strokeDashArray?: number; fillColor?: string; borderColor?: string; borderWidth?: number; opacity?: number; offsetX?: number; offsetY?: number; label?: AnnotationLabel; } interface YAxisAnnotations { id?: number | string; y?: null | number | string; y2?: null | number | string; strokeDashArray?: number; fillColor?: string; borderColor?: string; borderWidth?: number; opacity?: number; offsetX?: number; offsetY?: number; width?: number | string; yAxisIndex?: number; label?: AnnotationLabel; } interface PointAnnotations { id?: number | string; x?: number | string; y?: null | number; yAxisIndex?: number; seriesIndex?: number; mouseEnter?: Function; mouseLeave?: Function; click?: Function; marker?: { size?: number; fillColor?: string; strokeColor?: string; strokeWidth?: number; shape?: string; offsetX?: number; offsetY?: number; cssClass?: string; }; label?: AnnotationLabel; image?: { path?: string; width?: number; height?: number; offsetX?: number; offsetY?: number; }; } interface ImageAnnotations { path?: string; x?: number; y?: number; width?: number; height?: number; appendTo?: string; } interface TextAnnotations { x?: number; y?: number; text?: string; textAnchor?: string; foreColor?: string; fontSize?: string | number; fontFamily?: undefined | string; fontWeight?: string | number; appendTo?: string; backgroundColor?: string; borderColor?: string; borderRadius?: number; borderWidth?: number; paddingLeft?: number; paddingRight?: number; paddingTop?: number; paddingBottom?: number; } /** * Options for localization. * See https://apexcharts.com/docs/options/chart/locales */ interface ApexLocale { name?: string; options?: { months?: string[]; shortMonths?: string[]; days?: string[]; shortDays?: string[]; toolbar?: { download?: string; selection?: string; selectionZoom?: string; zoomIn?: string; zoomOut?: string; pan?: string; reset?: string; exportToSVG?: string; exportToPNG?: string; exportToCSV?: string; menu?: string; }; }; } /** * PlotOptions for specifying chart-type-specific configuration. * See https://apexcharts.com/docs/options/plotoptions/bar/ */ interface ApexPlotOptions { line?: { isSlopeChart?: boolean; colors?: { threshold?: number; colorAboveThreshold?: string; colorBelowThreshold?: string; }; }; area?: { fillTo?: "origin" | "end"; }; bar?: { horizontal?: boolean; columnWidth?: string | number; barHeight?: string | number; distributed?: boolean; borderRadius?: number; borderRadiusApplication?: "around" | "end"; borderRadiusWhenStacked?: "all" | "last"; hideZeroBarsWhenGrouped?: boolean; rangeBarOverlap?: boolean; rangeBarGroupRows?: boolean; isDumbbell?: boolean; dumbbellColors?: string[][]; isFunnel?: boolean; isFunnel3d?: boolean; colors?: { ranges?: { from?: number; to?: number; color?: string; }[]; backgroundBarColors?: string[]; backgroundBarOpacity?: number; backgroundBarRadius?: number; }; dataLabels?: { maxItems?: number; hideOverflowingLabels?: boolean; position?: string; orientation?: "horizontal" | "vertical"; total?: { enabled?: boolean; formatter?(val?: string, opts?: any): string; offsetX?: number; offsetY?: number; style?: { color?: string; fontSize?: string; fontFamily?: string; fontWeight?: number | string; }; }; }; }; bubble?: { zScaling?: boolean; minBubbleRadius?: number; maxBubbleRadius?: number; }; candlestick?: { type?: string; colors?: { upward?: string | string[]; downward?: string | string[]; }; wick?: { useFillColor?: boolean; }; }; boxPlot?: { colors?: { upper?: string | string[]; lower?: string | string[]; }; }; heatmap?: { radius?: number; enableShades?: boolean; shadeIntensity?: number; reverseNegativeShade?: boolean; distributed?: boolean; useFillColorAsStroke?: boolean; colorScale?: { ranges?: { from?: number; to?: number; color?: string; foreColor?: string; name?: string; }[]; inverse?: boolean; min?: number; max?: number; }; }; treemap?: { enableShades?: boolean; shadeIntensity?: number; distributed?: boolean; reverseNegativeShade?: boolean; useFillColorAsStroke?: boolean; dataLabels?: { format?: "scale" | "truncate"; }; borderRadius?: number; colorScale?: { inverse?: boolean; ranges?: { from?: number; to?: number; color?: string; foreColor?: string; name?: string; }[]; min?: number; max?: number; }; seriesTitle?: { show?: boolean; offsetY?: number; offsetX?: number; borderColor?: string; borderWidth?: number; borderRadius?: number; style?: { background?: string; color?: string; fontSize?: string; fontFamily?: string; fontWeight?: number | string; cssClass?: string; padding?: { left?: number; right?: number; top?: number; bottom?: number; }; }; }; }; pie?: { startAngle?: number; endAngle?: number; customScale?: number; offsetX?: number; offsetY?: number; expandOnClick?: boolean; dataLabels?: { offset?: number; minAngleToShowLabel?: number; }; donut?: { size?: string; background?: string; labels?: { show?: boolean; name?: { show?: boolean; fontSize?: string; fontFamily?: string; fontWeight?: string | number; color?: string; offsetY?: number; formatter?(val: string): string; }; value?: { show?: boolean; fontSize?: string; fontFamily?: string; fontWeight?: string | number; color?: string; offsetY?: number; formatter?(val: string): string; }; total?: { show?: boolean; showAlways?: boolean; fontFamily?: string; fontSize?: string; fontWeight?: string | number; label?: string; color?: string; formatter?(w: any): string; }; }; }; }; polarArea?: { rings?: { strokeWidth?: number; strokeColor?: string; }; spokes?: { strokeWidth?: number; connectorColors?: string | string[]; }; }; radar?: { size?: number; offsetX?: number; offsetY?: number; polygons?: { strokeColors?: string | string[]; strokeWidth?: string | string[]; connectorColors?: string | string[]; fill?: { colors?: string[]; }; }; }; radialBar?: { inverseOrder?: boolean; startAngle?: number; endAngle?: number; offsetX?: number; offsetY?: number; hollow?: { margin?: number; size?: string; background?: string; image?: string; imageWidth?: number; imageHeight?: number; imageOffsetX?: number; imageOffsetY?: number; imageClipped?: boolean; position?: "front" | "back"; dropShadow?: ApexDropShadow; }; track?: { show?: boolean; startAngle?: number; endAngle?: number; background?: string | string[]; strokeWidth?: string; opacity?: number; margin?: number; dropShadow?: ApexDropShadow; }; dataLabels?: { show?: boolean; name?: { show?: boolean; fontSize?: string; fontFamily?: string; fontWeight?: string | number; color?: string; offsetY?: number; }; value?: { show?: boolean; fontSize?: string; fontFamily?: string; fontWeight?: string | number; color?: string; offsetY?: number; formatter?(val: number): string; }; total?: { show?: boolean; label?: string; fontFamily?: string; fontSize?: string; fontWeight?: string | number; color?: string; formatter?(opts: any): string; }; }; barLabels?: { enabled?: boolean; offsetX?: number; offsetY?: number; useSeriesColors?: boolean; fontFamily?: string; fontWeight?: string | number; fontSize?: string; formatter?: (barName: string, opts?: any) => string; onClick?: (barName: string, opts?: any) => void; }; }; } type ApexColorStop = { offset: number; color: string; opacity: number; }; interface ApexFill { colors?: any[]; opacity?: number | number[]; type?: string | string[]; gradient?: { shade?: string; type?: string; shadeIntensity?: number; gradientToColors?: string[]; inverseColors?: boolean; opacityFrom?: number | number[]; opacityTo?: number | number[]; stops?: number[]; colorStops?: ApexColorStop[][] | ApexColorStop[]; }; image?: { src?: string | string[]; width?: number; height?: number; }; pattern?: { style?: string | string[]; width?: number; height?: number; strokeWidth?: number; }; } /** * Chart Legend configuration options. * See https://apexcharts.com/docs/options/legend/ */ interface ApexLegend { show?: boolean; showForSingleSeries?: boolean; showForNullSeries?: boolean; showForZeroSeries?: boolean; floating?: boolean; inverseOrder?: boolean; position?: "top" | "right" | "bottom" | "left"; horizontalAlign?: "left" | "center" | "right"; fontSize?: string; fontFamily?: string; fontWeight?: string | number; width?: number; height?: number; offsetX?: number; offsetY?: number; customLegendItems?: string[]; labels?: { colors?: string | string[]; useSeriesColors?: boolean; }; markers?: { strokeWidth?: number; fillColors?: string[]; shape?: ApexMarkerShape; offsetX?: number; offsetY?: number; customHTML?(): any; onClick?(): void; }; itemMargin?: { horizontal?: number; vertical?: number; }; onItemClick?: { toggleDataSeries?: boolean; }; onItemHover?: { highlightDataSeries?: boolean; }; formatter?(legendName: string, opts?: any): string; tooltipHoverFormatter?(legendName: string, opts?: any): string; } /** * Chart Datalabels options * See https://apexcharts.com/docs/options/datalabels/ */ interface ApexDataLabels { enabled?: boolean; enabledOnSeries?: undefined | number[]; textAnchor?: "start" | "middle" | "end"; distributed?: boolean; offsetX?: number; offsetY?: number; style?: { fontSize?: string; fontFamily?: string; fontWeight?: string | number; colors?: any[]; }; background?: { enabled?: boolean; foreColor?: string; backgroundColor?: string; borderRadius?: number; padding?: number; opacity?: number; borderWidth?: number; borderColor?: string; dropShadow?: ApexDropShadow; }; dropShadow?: ApexDropShadow; formatter?(val: string | number | number[], opts?: any): string | number | (string | number)[]; } interface ApexResponsive { breakpoint?: number; options?: any; } type ApexTooltipY = { title?: { formatter?(seriesName: string, opts?: any): string; }; formatter?(val: number, opts?: any): string; }; /** * Chart Tooltip options * See https://apexcharts.com/docs/options/tooltip/ */ interface ApexTooltip { enabled?: boolean; enabledOnSeries?: undefined | number[]; shared?: boolean; followCursor?: boolean; intersect?: boolean; inverseOrder?: boolean; custom?: ((options: any) => any) | ((options: any) => any)[]; fillSeriesColor?: boolean; theme?: string; cssClass?: string; hideEmptySeries?: boolean; style?: { fontSize?: string; fontFamily?: string; }; onDatasetHover?: { highlightDataSeries?: boolean; }; x?: { show?: boolean; format?: string; formatter?(val: number, opts?: any): string; }; y?: ApexTooltipY | ApexTooltipY[]; z?: { title?: string; formatter?(val: number): string; }; marker?: { show?: boolean; fillColors?: string[]; }; items?: { display?: string; }; fixed?: { enabled?: boolean; position?: string; offsetX?: number; offsetY?: number; }; } /** * X Axis options * See https://apexcharts.com/docs/options/xaxis/ */ interface ApexXAxis { type?: "category" | "datetime" | "numeric"; categories?: any; overwriteCategories?: number[] | string[] | undefined; offsetX?: number; offsetY?: number; sorted?: boolean; labels?: { show?: boolean; rotate?: number; rotateAlways?: boolean; hideOverlappingLabels?: boolean; showDuplicates?: boolean; trim?: boolean; minHeight?: number; maxHeight?: number; style?: { colors?: string | string[]; fontSize?: string; fontWeight?: string | number; fontFamily?: string; cssClass?: string; }; offsetX?: number; offsetY?: number; format?: string; datetimeUTC?: boolean; datetimeFormatter?: { year?: string; month?: string; day?: string; hour?: string; minute?: string; second?: string; }; formatter?(value: string, timestamp?: number, opts?: any): string | string[]; }; group?: { groups?: { title: string; cols: number; }[]; style?: { colors?: string | string[]; fontSize?: string; fontFamily?: string; fontWeight?: string | number; cssClass?: string; }; }; axisBorder?: { show?: boolean; color?: string; offsetX?: number; offsetY?: number; strokeWidth?: number; }; axisTicks?: { show?: boolean; borderType?: string; color?: string; height?: number; offsetX?: number; offsetY?: number; }; tickPlacement?: string; stepSize?: number; tickAmount?: number | "dataPoints"; min?: number; max?: number; range?: number; floating?: boolean; decimalsInFloat?: number; position?: string; title?: { text?: string; offsetX?: number; offsetY?: number; style?: { color?: string; fontFamily?: string; fontWeight?: string | number; fontSize?: string; cssClass?: string; }; }; crosshairs?: { show?: boolean; width?: number | string; position?: string; opacity?: number; stroke?: { color?: string; width?: number; dashArray?: number; }; fill?: { type?: string; color?: string; gradient?: { colorFrom?: string; colorTo?: string; stops?: number[]; opacityFrom?: number; opacityTo?: number; }; }; dropShadow?: ApexDropShadow; }; tooltip?: { enabled?: boolean; offsetY?: number; style?: { fontSize?: string; fontFamily?: string; }; formatter?(value: string, opts?: object): string; }; } /** * Y Axis options * See https://apexcharts.com/docs/options/yaxis/ */ interface ApexYAxis { show?: boolean; showAlways?: boolean; showForNullSeries?: boolean; seriesName?: string | string[]; opposite?: boolean; reversed?: boolean; logarithmic?: boolean; logBase?: number; tickAmount?: number; stepSize?: number; forceNiceScale?: boolean; min?: number | ((min: number) => number); max?: number | ((max: number) => number); floating?: boolean; decimalsInFloat?: number; labels?: { show?: boolean; showDuplicates?: boolean; minWidth?: number; maxWidth?: number; offsetX?: number; offsetY?: number; rotate?: number; align?: "left" | "center" | "right"; padding?: number; style?: { colors?: string | string[]; fontSize?: string; fontFamily?: string; fontWeight?: string | number; cssClass?: string; }; formatter?(val: number, opts?: any): string | string[]; }; axisBorder?: { show?: boolean; color?: string; width?: number; offsetX?: number; offsetY?: number; }; axisTicks?: { show?: boolean; color?: string; width?: number; offsetX?: number; offsetY?: number; }; title?: { text?: string; rotate?: number; offsetX?: number; offsetY?: number; style?: { color?: string; fontSize?: string; fontFamily?: string; fontWeight?: string | number; cssClass?: string; }; }; crosshairs?: { show?: boolean; position?: string; stroke?: { color?: string; width?: number; dashArray?: number; }; }; tooltip?: { enabled?: boolean; offsetX?: number; }; } interface ApexForecastDataPoints { count?: number; fillOpacity?: number; strokeWidth?: undefined | number; dashArray?: number; } /** * Plot X and Y grid options * See https://apexcharts.com/docs/options/grid/ */ interface ApexGrid { show?: boolean; borderColor?: string; strokeDashArray?: number; position?: "front" | "back"; xaxis?: { lines?: { show?: boolean; offsetX?: number; offsetY?: number; }; }; yaxis?: { lines?: { show?: boolean; offsetX?: number; offsetY?: number; }; }; row?: { colors?: string[]; opacity?: number; }; column?: { colors?: string[]; opacity?: number; }; padding?: { top?: number; right?: number; bottom?: number; left?: number; }; } interface ApexTheme { mode?: "light" | "dark"; palette?: string; monochrome?: { enabled?: boolean; color?: string; shadeTo?: "light" | "dark"; shadeIntensity?: number; }; } type MarkerShapeOptions = "circle" | "square" | "rect" | "line" | "cross" | "plus" | "star" | "sparkle" | "diamond" | "triangle"; type ApexMarkerShape = MarkerShapeOptions | MarkerShapeOptions[]; interface ApexDiscretePoint { seriesIndex?: number; dataPointIndex?: number; fillColor?: string; strokeColor?: string; size?: number; shape?: ApexMarkerShape; } interface ApexMarkers { size?: number | number[]; colors?: string[]; strokeColors?: string | string[]; strokeWidth?: number | number[]; strokeOpacity?: number | number[]; strokeDashArray?: number | number[]; fillOpacity?: number | number[]; discrete?: ApexDiscretePoint[]; shape?: ApexMarkerShape; offsetX?: number; offsetY?: number; showNullDataPoints?: boolean; hover?: { size?: number; sizeOffset?: number; }; onClick?(e?: any): void; onDblClick?(e?: any): void; } interface ApexNoData { text?: string; align?: "left" | "right" | "center"; verticalAlign?: "top" | "middle" | "bottom"; offsetX?: number; offsetY?: number; style?: { color?: string; fontSize?: string; fontFamily?: string; }; } type ChartType = "line" | "area" | "bar" | "pie" | "donut" | "radialBar" | "scatter" | "bubble" | "heatmap" | "candlestick" | "boxPlot" | "radar" | "polarArea" | "rangeBar" | "rangeArea" | "treemap"; type ApexCharts = apexcharts; declare global { interface Window { ApexCharts: typeof ApexCharts; } } declare class ChartComponent implements OnChanges, OnDestroy { readonly chart: _angular_core.InputSignal; readonly annotations: _angular_core.InputSignal; readonly colors: _angular_core.InputSignal; readonly dataLabels: _angular_core.InputSignal; readonly series: _angular_core.InputSignal; readonly stroke: _angular_core.InputSignal; readonly labels: _angular_core.InputSignal; readonly legend: _angular_core.InputSignal; readonly markers: _angular_core.InputSignal; readonly noData: _angular_core.InputSignal; readonly fill: _angular_core.InputSignal; readonly tooltip: _angular_core.InputSignal; readonly plotOptions: _angular_core.InputSignal; readonly responsive: _angular_core.InputSignal; readonly xaxis: _angular_core.InputSignal; readonly yaxis: _angular_core.InputSignal; readonly forecastDataPoints: _angular_core.InputSignal; readonly grid: _angular_core.InputSignal; readonly states: _angular_core.InputSignal; readonly title: _angular_core.InputSignal; readonly subtitle: _angular_core.InputSignal; readonly theme: _angular_core.InputSignal; readonly autoUpdateSeries: _angular_core.InputSignal; readonly chartReady: _angular_core.OutputEmitterRef<{ chartObj: ApexCharts; }>; readonly chartInstance: _angular_core.WritableSignal; private readonly chartElement; private ngZone; private isBrowser; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; private hydrate; private createElement; render(): Promise; updateOptions(options: any, redrawPaths?: boolean, animate?: boolean, updateSyncedCharts?: boolean): Promise; updateSeries(newSeries: ApexAxisChartSeries | ApexNonAxisChartSeries, animate?: boolean): Promise; appendSeries(newSeries: ApexAxisChartSeries | ApexNonAxisChartSeries, animate?: boolean): void; appendData(newData: any[]): void; highlightSeries(seriesName: string): any; toggleSeries(seriesName: string): any; showSeries(seriesName: string): void; hideSeries(seriesName: string): void; resetSeries(): void; zoomX(min: number, max: number): void; toggleDataPointSelection(seriesIndex: number, dataPointIndex?: number): void; destroy(): void; setLocale(localeName: string): void; paper(): void; addXaxisAnnotation(options: any, pushToMemory?: boolean, context?: any): void; addYaxisAnnotation(options: any, pushToMemory?: boolean, context?: any): void; addPointAnnotation(options: any, pushToMemory?: boolean, context?: any): void; removeAnnotation(id: string, options?: any): void; clearAnnotations(options?: any): void; dataURI(options?: any): Promise<{ imgURI: string; } | { blob: Blob; }>; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } declare class NgApexchartsModule { static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵmod: _angular_core.ɵɵNgModuleDeclaration; static ɵinj: _angular_core.ɵɵInjectorDeclaration; } export { ChartComponent, NgApexchartsModule }; export type { AnnotationLabel, AnnotationStyle, ApexAnnotations, ApexAxisChartSeries, ApexChart, ApexDataLabels, ApexFill, ApexForecastDataPoints, ApexGrid, ApexLegend, ApexLocale, ApexMarkers, ApexNoData, ApexNonAxisChartSeries, ApexOptions, ApexPlotOptions, ApexResponsive, ApexStates, ApexStroke, ApexTheme, ApexTitleSubtitle, ApexTooltip, ApexXAxis, ApexYAxis, ChartType, ImageAnnotations, PointAnnotations, TextAnnotations, XAxisAnnotations, YAxisAnnotations };