/** * @fileoverview 图表插件常量定义文件 * * 该文件定义了图表插件中使用的各种常量,包括默认颜色列表等。 * * @author md-editor * @version 1.0.0 * @since 2024 */ /** * 默认颜色列表 * * 用于图表数据系列的颜色配置,提供10种预定义的颜色。 * 这些颜色经过精心挑选,确保在图表中具有良好的视觉效果和对比度。 * * @constant * @type {string[]} * @default * @example * // 使用默认颜色列表 * const colors = defaultColorList; * console.log(colors[0]); // '#1677ff' * * @since 1.0.0 */ export declare const defaultColorList: string[];