ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  How to......hide it...
Posted by JJJ on Sep-01-2011 11:09
Attachments:
Hi Peter:

I am using ChartDirector for .NET  ver 5

I have a problem ...

thanks
未命名 - 2.jpg

  Re: How to......hide it...
Posted by Peter Kwan on Sep-01-2011 23:31
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

  Re: How to......hide it...
Posted by JJJ on Sep-08-2011 15:39
Thanks Peter