File

projects/ng2-google-charts/src/lib/google-chart/chart-mouse-event.ts

Index

Properties

Properties

boundingBox
boundingBox: BoundingBox
Type : BoundingBox
columnLabel
columnLabel: string
Type : string
columnType
columnType: string
Type : string
position
position: DataPointPosition
Type : DataPointPosition
value
value: any
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 {}

results matching ""

    No results matching ""