UNPKG

@rcsb/rcsb-charts

Version:
14 lines (13 loc) 592 B
import { ChartDataColumnInterface, ChartDataProviderInterface } from "./ChartDataProviderInterface"; import { ChartConfigInterface, ChartObjectInterface } from "../RcsbChartComponent/ChartConfigInterface"; export declare class HistogramChartDataProvider implements ChartDataProviderInterface { private config; private data; setData(chartData: ChartObjectInterface[][], config?: ChartConfigInterface): void; getChartData(): { data: ChartDataColumnInterface[]; }; xDomain(): [number, number]; tickValues(): number[] | undefined; private transformData; }