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

Message ListMessage List     Post MessagePost Message

  Increase Decimal Places in Headers
Posted by MarkZB on Jun-06-2018 19:18
Attachments:
Is it possible to increase the decimal accuracy in header section to 8 places?

eg 0.00000065
8DecimalPlaces.png

  Re: Increase Decimal Places in Headers
Posted by Peter Kwan on Jun-06-2018 22:37
Hi MarkZB,

You may try FinanceChart.setNumberLabelFormat. See:

http://www.advsofteng.com/doc/cdnet.htm#FinanceChart.setNumberLabelFormat.htm

For example:

myFinanceChart.setNumberLabelFormat("P8");

In charts, one way to handle very small (or large) numbers is to change the unit. For example, if the weight of a molecule is 0.00000008g, it is better to use nanograms as the unit, like 80 ng. For your case, you may consider to multiply the data by a suitable factor to change the unit, and then add some text to the chart to mention the unit used.

Regards
Peter Kwan

  Re: Increase Decimal Places in Headers
Posted by MarkZB on Jun-06-2018 23:35
That worked, thanks Peter