Type alias TooltipConfig

TooltipConfig: TooltipPosition & {
    className?: string;
    content: string;
    data?: any;
    style?: Record<string, string>;
}

Configuration for Viewer.createTooltip

Type declaration

  • Optional className?: string

    Additional CSS class added to the tooltip

  • content: string

    HTML content of the tooltip

  • Optional data?: any

    Userdata associated to the tooltip

  • Optional style?: Record<string, string>

    CSS properties added to the tooltip

Generated using TypeDoc