It is possible to use HTML in JFreeChart tooltips?
I extend StandardCategoryToolTipGenerator and override method generateToolTip
public String generateToolTip(Dataset dataset, int row,
int column, int row) {
return "<h1>ToolTips on line 1<\\h1> <br /> Second line tooltip"
}
But it is displaying whole string instead. Does anyone know how to display html text in jfrechart tooltips?