UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

7 lines (6 loc) 342 B
import type { IBarSeriesSpec } from '../../series/bar/interface'; import type { IChartExtendsSeriesSpec } from '../../typings'; import type { ICartesianChartSpec } from '../cartesian/interface'; export interface IHistogramChartSpec extends ICartesianChartSpec, Omit<IChartExtendsSeriesSpec<IBarSeriesSpec>, 'type'> { type: 'histogram'; }