TreeMapToolTip

interface TreeMapToolTip<N, Row, Column>

This abstract class defines the method required to display tooltips in a TreeMapView.

Parameters

Inheritors

Types

Link copied to clipboard

Properties

Link copied to clipboard
abstract val height: Int
Link copied to clipboard
abstract var node: N?

Sets the current node that the tooltip should display information about.

Link copied to clipboard
abstract val popupLocation: Point?
Link copied to clipboard
abstract val preferredLocation: Point?

Gets the preferred location of the tooltip relative to the TreeMapView.

Link copied to clipboard
abstract var preferredWidth: Int

Sets the preferred width of the tooltip.

Link copied to clipboard

Sets the type of the tooltip.

Link copied to clipboard
abstract val width: Int

Functions

Link copied to clipboard
abstract fun getPreferredSize(g: TGraphics?): Dimension?
Link copied to clipboard
abstract fun paintBackground(g: TGraphics)

Paints the background of the tooltip.

Link copied to clipboard
abstract fun paintText(g: TGraphics)

Paints the values and the labels of the tooltip.

Link copied to clipboard
abstract fun setSize(d: Dimension)
Link copied to clipboard
abstract fun showNode(node: N?)

Shows the current node that the tooltip should display information about.