UNPKG

@syncfusion/ej2-charts

Version:

Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball.

19 lines (18 loc) 761 B
import { ChartTheme } from '../../common/utils/enum'; import { Chart3DThemeStyle } from './chart3d-Interface'; /** * Gets the 3D theme color based on the specified chart theme. * * @param {ChartTheme} theme - The theme to determine the 3D color for. * @returns {Chart3DThemeStyle} An object containing 3D theme color styles. * @private */ export declare function get3DThemeColor(theme: ChartTheme): Chart3DThemeStyle; /** * Gets the color palette for 3D chart series based on the specified theme. * * @param {ChartTheme} theme - The theme to determine the color palette for. * @returns {string[]} An array of color values representing the 3D series color palette. * @private */ export declare function get3DSeriesColor(theme: ChartTheme): string[];