@zhouchangju/standard-chart
Version:
标准范式组件
23 lines (22 loc) • 568 B
TypeScript
/**
* * 新增配置项 `dvReferenceLine` 来配置瀑布图的相邻柱子间参考线
*
* - 仅在 `dvType: 'waterfall'` 时生效
* - 只考虑竖向瀑布图
* - 仅配置在第二个柱状图才有效
*
* @example
* ```javascript
* {
* type: 'bar',
* dvType: 'waterfall',
* stack: 'waterfall'
* dvReferenceLine: {
* show: true,
* color: 'gray',
* },
* }
* ```
*/
import { type EChartsExtensionInstallRegisters } from 'echarts/lib/extension';
export declare function install(registers: EChartsExtensionInstallRegisters): void;