Interface IShowToolTipProperties

interface IShowToolTipProperties {
    anchor: {
        height?: number;
        width?: number;
        x: number;
        y: number;
    };
    display?: string | ReactElement<any, string | JSXElementConstructor<any>>;
    placement?: ToolTipPlacement;
}

Properties

anchor: {
    height?: number;
    width?: number;
    x: number;
    y: number;
}

The anchor for the tooltip. x,y are required but width and height can also be provided.

Type declaration

  • Optional height?: number
  • Optional width?: number
  • x: number
  • y: number
display?: string | ReactElement<any, string | JSXElementConstructor<any>>

The value to display. This is either a string or a react element

placement?: ToolTipPlacement

Purely suggestion only If not specified then the consumer will determine