Hi JJJ,
You may use FinanceChart.setYAxisStyle to set the y-axis labels to transparent. Note that you need to do this before adding the main price chart. For example:
FinanceChart c = new FinanceChart(400);
//disable y-axis labels
c.setYAxisStyle("normal", 8, Chart.Transparent, 14);
//if you want to disable the grid lines, use the followings to set the grid lines to transparent
c.setPlotAreaStyle(Chart.Transparent, Chart.Transparent, Chart.Transparent, Chart.Transparent, Chart.Transparent);
Hope this can help.
Regards
Peter Kwan |