From 09626acdd70cef767fe0f4aeb80be846fbd5f295 Mon Sep 17 00:00:00 2001 From: Chris Jackson Date: Mon, 3 Nov 2014 12:39:42 +0000 Subject: [PATCH] Update documentation --- docs/graph2d.html | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/graph2d.html b/docs/graph2d.html index ae919d0b..c534ffc7 100644 --- a/docs/graph2d.html +++ b/docs/graph2d.html @@ -488,13 +488,29 @@ The options colored in green can also be used as options for the groups. All opt undefined Set the title style for the right axis. This is a css string and it will override the attributes set in the class. + + dataAxis.format.left.decimals + Number + undefined + Set the number of decimal points used on the the left axis. If set, this will fix the number of decimal places + displayed after the decimal point. + If undefined, trailing zeros will be removed. + + + dataAxis.format.right.decimals + Number + undefined + Set the number of decimal points used on the the right axis. If set, this will fix the number of decimal places + displayed after the decimal point. + If undefined, trailing zeros will be removed. + groups.visibility Object You can use this to toggle the visibility of groups per graph2D instance. This is different from setting the visibility flag of the groups since this is not communicated across instances of graph2d. Take a look at Example 14 - for more explaination. + for more explanation.