From 572a2673c401bce0bb3a3b642b44f357b16a20b2 Mon Sep 17 00:00:00 2001 From: David Larlet <3556+davidbgk@users.noreply.github.com> Date: Tue, 14 Mar 2023 16:56:49 -0400 Subject: [PATCH] Correct chart type key name in first example I was wondering why the `type` wasn't effective. --- docs/getting_started/quick_start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting_started/quick_start.md b/docs/getting_started/quick_start.md index aea9ac8..f4e51bb 100644 --- a/docs/getting_started/quick_start.md +++ b/docs/getting_started/quick_start.md @@ -26,11 +26,11 @@ const data = { ], datasets: [ { - name: "Some Data", type: "bar", + name: "Some Data", chartType: "bar", values: [25, 40, 30, 35, 8, 52, 17, -4] }, { - name: "Another Set", type: "line", + name: "Another Set", chartType: "line", values: [25, 50, -10, 15, 18, 32, 27, 14] } ]