@carbon/charts
Version:
Carbon Charts component library
14 lines (13 loc) • 477 B
TypeScript
import { Position } from '@carbon/utils-position';
import { Component } from '../component';
import { ChartModel } from '../../model/model';
import { RenderTypes } from '../../interfaces/enums';
export declare class Highlight extends Component {
type: string;
renderType: RenderTypes;
label: any;
positionService: Position;
highlightStrokeWidth: number;
constructor(model: ChartModel, services: any);
render(animate?: boolean): void;
}