From bf724abe8b314c45bc706617a36f40521f3c0a83 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Mon, 14 Mar 2016 19:43:21 -0400 Subject: [PATCH] Fix axis IDs in documentation --- docs/02-Line-Chart.md | 4 ++-- docs/03-Bar-Chart.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/02-Line-Chart.md b/docs/02-Line-Chart.md index 00e10a7c4..2bcabc39c 100644 --- a/docs/02-Line-Chart.md +++ b/docs/02-Line-Chart.md @@ -86,8 +86,8 @@ var data = { // The actual data data: [65, 59, 80, 81, 56, 55, 40], - // String - If specified, binds the dataset to a certain y-axis. If not specified, the first y-axis is used. - yAxisID: "y-axis-1", + // String - If specified, binds the dataset to a certain y-axis. If not specified, the first y-axis is used. First id is y-axis-0 + yAxisID: "y-axis-0", }, { label: "My Second dataset", diff --git a/docs/03-Bar-Chart.md b/docs/03-Bar-Chart.md index 58a713c59..d59a63715 100644 --- a/docs/03-Bar-Chart.md +++ b/docs/03-Bar-Chart.md @@ -50,7 +50,7 @@ var data = { data: [65, 59, 80, 81, 56, 55, 40], // String - If specified, binds the dataset to a certain y-axis. If not specified, the first y-axis is used. - yAxisID: "y-axis-1", + yAxisID: "y-axis-0", }, { label: "My Second dataset", -- 2.47.2