SMART datagrid v.1 > Classes > DisplayOptions
It specifies the maximum width of tooltip box in pixels.
If the default value is 0, there will be no limit. And, it specifies the minimum width by tooltipMinWidth.
Defaults to 0.
grid.setOptions({
display: {
tooltipMaxWidth: 200,
tooltipMinWidth: 0
}
});
grid.setDisplayOptions({
tooltipMaxWidth: 200,
tooltipMinWidth: 0
});
grid.displayOptions().setTooltipMaxWidth(200);