projects/ng2-google-charts/src/lib/google-chart/chart-mouse-event.ts
Properties |
| boundingBox |
boundingBox:
|
Type : BoundingBox
|
| columnLabel |
columnLabel:
|
Type : string
|
| columnType |
columnType:
|
Type : string
|
| position |
position:
|
Type : DataPointPosition
|
| value |
value:
|
Type : any
|
import { ChartHTMLTooltip } from './chart-html-tooltip';
export interface DataPointPosition {
row: number;
column: number;
}
export interface BoundingBox {
top: number;
left: number;
width: number;
height: number;
}
export interface ChartMouseEvent {
position: DataPointPosition;
boundingBox: BoundingBox;
value: any;
columnType: string;
columnLabel: string;
}
export interface ChartMouseOverEvent extends ChartMouseEvent {
tooltip: ChartHTMLTooltip | null;
}
export interface ChartMouseOutEvent extends ChartMouseEvent {}