From a406fdae583d6019d93811762922f2e01d66f3e7 Mon Sep 17 00:00:00 2001 From: Francisco Neves Date: Mon, 8 Sep 2014 17:49:19 +0100 Subject: [PATCH] Update docs for toggle Horizontal/Vertical Lines feature --- docs/01-Line-Chart.md | 6 ++++++ docs/02-Bar-Chart.md | 8 +++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/01-Line-Chart.md b/docs/01-Line-Chart.md index 3dc606337..a4b6394ab 100644 --- a/docs/01-Line-Chart.md +++ b/docs/01-Line-Chart.md @@ -66,6 +66,12 @@ These are the customisation options specific to Line charts. These options are m //Number - Width of the grid lines scaleGridLineWidth : 1, + //Boolean - Whether to show horizontal lines (except X axis) + scaleShowHorizontalLines: true, + + //Boolean - Whether to show vertical lines (except Y axis) + scaleShowVerticalLines: true, + //Boolean - Whether the line is curved between points bezierCurve : true, diff --git a/docs/02-Bar-Chart.md b/docs/02-Bar-Chart.md index b4253e746..80b1999e5 100644 --- a/docs/02-Bar-Chart.md +++ b/docs/02-Bar-Chart.md @@ -65,6 +65,12 @@ These are the customisation options specific to Bar charts. These options are me //Number - Width of the grid lines scaleGridLineWidth : 1, + //Boolean - Whether to show horizontal lines (except X axis) + scaleShowHorizontalLines: true, + + //Boolean - Whether to show vertical lines (except Y axis) + scaleShowVerticalLines: true, + //Boolean - If there is a stroke on each bar barShowStroke : true, @@ -140,4 +146,4 @@ Calling `removeData()` on your Chart instance will remove the first value for al ```javascript myBarChart.removeData(); // The chart will now animate and remove the first bar -``` \ No newline at end of file +``` -- 2.47.2