SMART datagrid v.1 > Classes > DisplayOptions

[ grids ver.1.3.2]   Back  Forward

DataLudi.DisplayOptions.tooltipMinWidth  property

It specifies the minimum width of tooltip box in pixels. 

If the default value is 0, there will be no limit. And, it specifies the maximum width by tooltipMaxWidth

Defaults to 0.

Getter
function tooltipMinWidth(): Integer
Setter
function setTooltipMinWidth(value: Integer)
Code -1
    grid.setOptions({
        display: {
            tooltipMinWidth: 0,
            tooltipMaxWidth: 200
        }
    });
Code -2
    grid.setDisplayOptions({
        tooltipMinWidth: 0,
        tooltipMaxWidth: 200
    });
Code -3
    grid.displayOptions().setTooltipMinWidth(0);
See Also
tooltipMaxWidth
tooltipLineBreak
tooltipStyles
DataCellRenderer.showTooltip
GridBody.tooltipCallback
GridHeader.tooltipCallback
GridFooter.tooltipCallback
HeaderSummary.tooltipCallback
Examples
Tooltips
Link Cell Renderer