Hello,
How do I change the font size of a custom tooltip?
private void ConfigureCustomTooltip()
{
// custom tooltip containing decision variable values
CustomToolTip decisionVariableTooltip = new CustomToolTip(this);
decisionVariableTooltip.SetDataToolTipFormat(ChartObj.DATA_TOOLTIP_CUSTOM);
decisionVariableTooltip.SetEnable(true);
chartView.SetCurrentMouseListener(decisionVariableTooltip);
}
Thanks, Jules