Hi,
Sometimes the length of chart legend is too long that it is not able to fit in my window. so, I can see just partial legend.
Is there any way I can change the legend font or make the legend fit in the window?
Thanks,
Vipin
font in legend
Re: font in legend
There is a setItemFont(...) method in the StandardLegend class.
StandardLegend legend = (StandardLegend)myChart.getLegend();
legend.setItemFont(someFont);
Regards,
DG
StandardLegend legend = (StandardLegend)myChart.getLegend();
legend.setItemFont(someFont);
Regards,
DG