SMART datagrid v.1 > Classes > DisplayOptions
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.
grid.setOptions({
display: {
tooltipMinWidth: 0,
tooltipMaxWidth: 200
}
});
grid.setDisplayOptions({
tooltipMinWidth: 0,
tooltipMaxWidth: 200
});
grid.displayOptions().setTooltipMinWidth(0);