From c26e4d11d2f17e99bf5a8201a8a78fe575a1fba4 Mon Sep 17 00:00:00 2001 From: Micheal Slade <50627681+Micheal-Slade@users.noreply.github.com> Date: Tue, 23 May 2023 14:49:31 +0100 Subject: [PATCH 1/3] Updating chart options --- src/App.svelte | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index 47c1dac..8da8791 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -153,9 +153,12 @@ console.log(app) const charts = [ 'bar-chart-horizontal-sm', 'bar-chart-horizontal-split', + 'bar-chart-horizontal-stacked', 'bar-chart-horizontal-stacked-sm', + 'bar-chart-horizontal-stacked-clustered-grouped', + 'bar-chart-horizontal-stacked-clustered', + 'bar-chart-horizontal-stacked-grouped', 'bar-chart-horizontal', - 'bubble-chart-animated', 'comet-plot', 'dot-plot', 'grouped-bar-chart', @@ -163,7 +166,6 @@ console.log(app) 'heatmap', 'range-plot', 'split-bar-chart', - 'scatter-plot-animated', 'stacked-horizontal-bar-chart', 'static-population-pyramid-with-comparison', 'static-population-pyramid', From e5bdafea7a2d5db2263fa1aa8b65e1a193de1a2b Mon Sep 17 00:00:00 2001 From: Micheal Slade <50627681+Micheal-Slade@users.noreply.github.com> Date: Mon, 26 Jun 2023 17:41:12 +0100 Subject: [PATCH 2/3] updating chart list --- src/App.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.svelte b/src/App.svelte index 8da8791..5200a9b 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -159,6 +159,7 @@ console.log(app) 'bar-chart-horizontal-stacked-clustered', 'bar-chart-horizontal-stacked-grouped', 'bar-chart-horizontal', + 'line-chart', 'comet-plot', 'dot-plot', 'grouped-bar-chart', @@ -172,6 +173,7 @@ console.log(app) 'population-pyramid-with-dropdown-and-interactive-comparison', 'population-pyramid-with-dropdown', 'population-pyramid-with-interactive-comparison', + 'bar-chart-horizontal-grouped-clustered', ] let chart = 'split-bar-chart' //index in charts == 'bar-chart' From 5d0e684ac914392980c14ac383ed7da5fde6ba63 Mon Sep 17 00:00:00 2001 From: Micheal Slade <50627681+Micheal-Slade@users.noreply.github.com> Date: Wed, 5 Jul 2023 08:45:45 +0100 Subject: [PATCH 3/3] updating chart list --- src/App.svelte | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index 5200a9b..a0c32fd 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -151,6 +151,8 @@ console.log(app) } const charts = [ + 'area-stacked', + 'area-stacked-sm', 'bar-chart-horizontal-sm', 'bar-chart-horizontal-split', 'bar-chart-horizontal-stacked', @@ -159,21 +161,22 @@ console.log(app) 'bar-chart-horizontal-stacked-clustered', 'bar-chart-horizontal-stacked-grouped', 'bar-chart-horizontal', + 'bar-chart-horizontal-grouped-clustered', 'line-chart', 'comet-plot', + 'column-chart', 'dot-plot', 'grouped-bar-chart', 'heatmap-per-column', 'heatmap', 'range-plot', + 'scatter-plot', 'split-bar-chart', - 'stacked-horizontal-bar-chart', - 'static-population-pyramid-with-comparison', - 'static-population-pyramid', + 'population-pyramid-static-with-comparison', + 'population-pyramid-static', + 'population-pyramid-with-comparison-toggle', 'population-pyramid-with-dropdown-and-interactive-comparison', 'population-pyramid-with-dropdown', - 'population-pyramid-with-interactive-comparison', - 'bar-chart-horizontal-grouped-clustered', ] let chart = 'split-bar-chart' //index in charts == 'bar-chart'