diff --git a/area-stacked-sm/config.js b/area-stacked-sm/config.js
index 9adf203..44f70b4 100644
--- a/area-stacked-sm/config.js
+++ b/area-stacked-sm/config.js
@@ -1,7 +1,6 @@
config = {
"graphicDataURL": "data.csv",
"colourPalette": ONSpalette,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"xDomain": "auto",
"yDomain": "auto",
diff --git a/area-stacked-sm/index.html b/area-stacked-sm/index.html
index 72f28e5..4d94bc0 100644
--- a/area-stacked-sm/index.html
+++ b/area-stacked-sm/index.html
@@ -25,10 +25,6 @@
-
-
-
-
diff --git a/area-stacked-sm/script.js b/area-stacked-sm/script.js
index a3e6289..d23cf1e 100644
--- a/area-stacked-sm/script.js
+++ b/area-stacked-sm/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, calculateChartWidth, addChartTitleLabel, addAxisLabel, addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, calculateChartWidth, addChartTitleLabel, addAxisLabel} from "../lib/helpers.js";
let pymChild = null;
let graphic = d3.select('#graphic');
@@ -223,9 +223,6 @@ function drawGraphic() {
drawChart(d3.select(this), key, value, i);
});
- //create link to source
- addSource('source', config.sourceText);
-
// Send the height to the parent frame
if (pymChild) {
pymChild.sendHeight();
diff --git a/area-stacked/config.js b/area-stacked/config.js
index 1f0d0ce..42f1a02 100644
--- a/area-stacked/config.js
+++ b/area-stacked/config.js
@@ -1,7 +1,6 @@
config = {
"graphicDataURL": "data.csv",
"colourPalette": ONSpalette,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"xDomain": "auto",
"yDomain": "auto",
diff --git a/area-stacked/index.html b/area-stacked/index.html
index b19a7e5..b2184c5 100644
--- a/area-stacked/index.html
+++ b/area-stacked/index.html
@@ -25,10 +25,6 @@
-
-
-
-
diff --git a/area-stacked/script.js b/area-stacked/script.js
index 5ba1c24..d5e5720 100644
--- a/area-stacked/script.js
+++ b/area-stacked/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, addAxisLabel, addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, addAxisLabel} from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let legend = d3.select('#legend');
@@ -157,9 +157,6 @@ function drawGraphic() {
wrapWidth: chartWidth
});
- //create link to source
- addSource('source', config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/bar-chart-clustered-sm/config.js b/bar-chart-clustered-sm/config.js
index 3b32fb6..0aa9942 100644
--- a/bar-chart-clustered-sm/config.js
+++ b/bar-chart-clustered-sm/config.js
@@ -1,7 +1,6 @@
config = {
"graphicDataURL": "data.csv",
"colourPalette": ONSpalette,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"dataLabels": {
"show": true,
diff --git a/bar-chart-clustered-sm/index.html b/bar-chart-clustered-sm/index.html
index a6a7aaf..a3bdedf 100644
--- a/bar-chart-clustered-sm/index.html
+++ b/bar-chart-clustered-sm/index.html
@@ -26,10 +26,6 @@
-
-
-
-
diff --git a/bar-chart-clustered-sm/script.js b/bar-chart-clustered-sm/script.js
index 89ee97d..d338e4f 100644
--- a/bar-chart-clustered-sm/script.js
+++ b/bar-chart-clustered-sm/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, calculateChartWidth, addDataLabels, addChartTitleLabel, addAxisLabel, addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, calculateChartWidth, addDataLabels, addChartTitleLabel, addAxisLabel} from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let legend = d3.select('#legend');
@@ -209,9 +209,6 @@ function drawGraphic() {
drawChart(d3.select(this), value, i);
});
- //create link to source
- addSource('source', config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/bar-chart-clustered/config.js b/bar-chart-clustered/config.js
index 20ed0b6..7725486 100644
--- a/bar-chart-clustered/config.js
+++ b/bar-chart-clustered/config.js
@@ -2,7 +2,6 @@ config = {
"graphicDataURL": "data.csv",
"legendLabels": ["Category 1 goes here", "Category 2 goes here"],
"colourPalette": ONSpalette,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"dataLabels": {
"show": true,
diff --git a/bar-chart-clustered/index.html b/bar-chart-clustered/index.html
index d929235..8f9c1df 100644
--- a/bar-chart-clustered/index.html
+++ b/bar-chart-clustered/index.html
@@ -26,10 +26,6 @@
-
-
-
-
diff --git a/bar-chart-clustered/script.js b/bar-chart-clustered/script.js
index ef3d263..6e6c384 100644
--- a/bar-chart-clustered/script.js
+++ b/bar-chart-clustered/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, addDataLabels, addAxisLabel, addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, addDataLabels, addAxisLabel} from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let legend = d3.select('#legend');
@@ -157,9 +157,6 @@ function drawGraphic() {
wrapWidth: chartWidth
});
- //create link to source
- addSource('source', config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/bar-chart-grouped-clustered/config.js b/bar-chart-grouped-clustered/config.js
index 24ce3fa..016d9da 100644
--- a/bar-chart-grouped-clustered/config.js
+++ b/bar-chart-grouped-clustered/config.js
@@ -2,7 +2,6 @@ config = {
"graphicDataURL": "data.csv",
"legendLabels": ["Category 1 goes here", "Category 2 goes here"],
"colourPalette": ONSpalette,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"dataLabels": {
"show": true,
diff --git a/bar-chart-grouped-clustered/index.html b/bar-chart-grouped-clustered/index.html
index c94aa8b..1df1074 100644
--- a/bar-chart-grouped-clustered/index.html
+++ b/bar-chart-grouped-clustered/index.html
@@ -26,10 +26,6 @@
-
-
-
-
diff --git a/bar-chart-grouped-clustered/script.js b/bar-chart-grouped-clustered/script.js
index 12d8e4a..a1efe8a 100644
--- a/bar-chart-grouped-clustered/script.js
+++ b/bar-chart-grouped-clustered/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, addDataLabels, addAxisLabel, addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, addDataLabels, addAxisLabel} from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let legend = d3.select('#legend');
@@ -180,8 +180,6 @@ function drawGraphic() {
return d[0];
});
- addSource('source', config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/bar-chart-grouped/config.js b/bar-chart-grouped/config.js
index 78a4c66..859cfd7 100644
--- a/bar-chart-grouped/config.js
+++ b/bar-chart-grouped/config.js
@@ -3,7 +3,6 @@ config={
"legendLabels": {"min":"2015-2019", "max":"2020"},
//the keys match the column names
"colourPalette": ONScolours.oceanBlue,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"dataLabels":{
"show":true,
diff --git a/bar-chart-grouped/index.html b/bar-chart-grouped/index.html
index 05a5a20..bae3a3a 100644
--- a/bar-chart-grouped/index.html
+++ b/bar-chart-grouped/index.html
@@ -26,10 +26,6 @@
-
-
-
-
diff --git a/bar-chart-grouped/script.js b/bar-chart-grouped/script.js
index 11b8052..b9afe55 100644
--- a/bar-chart-grouped/script.js
+++ b/bar-chart-grouped/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, addAxisLabel, addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, addAxisLabel } from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let pymChild = null;
@@ -151,11 +151,6 @@ function drawGraphic() {
})
-
-
- //create link to source
- addSource('source', config.sourceText)
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/bar-chart-sm/config.js b/bar-chart-sm/config.js
index b20d898..dc62656 100644
--- a/bar-chart-sm/config.js
+++ b/bar-chart-sm/config.js
@@ -1,7 +1,6 @@
config = {
"graphicDataURL": "data.csv",
"colourPalette": ONScolours.oceanBlue,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"dataLabels": {
"show": 1,
diff --git a/bar-chart-sm/index.html b/bar-chart-sm/index.html
index 6a550b1..265b03f 100644
--- a/bar-chart-sm/index.html
+++ b/bar-chart-sm/index.html
@@ -26,10 +26,6 @@
-
-
-
-
diff --git a/bar-chart-sm/script.js b/bar-chart-sm/script.js
index 4765c83..faf4843 100644
--- a/bar-chart-sm/script.js
+++ b/bar-chart-sm/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, calculateChartWidth, addDataLabels, addChartTitleLabel, addAxisLabel,addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, calculateChartWidth, addDataLabels, addChartTitleLabel, addAxisLabel} from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let pymChild = null;
@@ -172,9 +172,6 @@ function drawGraphic() {
drawChart(d3.select(this), key, value, i);
});
- //create link to source
- addSource('source', config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/bar-chart-stacked-grouped/config.js b/bar-chart-stacked-grouped/config.js
index 8a1a084..29dc84a 100644
--- a/bar-chart-stacked-grouped/config.js
+++ b/bar-chart-stacked-grouped/config.js
@@ -1,7 +1,6 @@
config={
"graphicDataURL": "data.csv",
"colourPalette": ONSpalette,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"xDomain":"auto",
// either "auto" or an array for the x domain e.g. [0,100]
diff --git a/bar-chart-stacked-grouped/index.html b/bar-chart-stacked-grouped/index.html
index 03953e7..88782da 100644
--- a/bar-chart-stacked-grouped/index.html
+++ b/bar-chart-stacked-grouped/index.html
@@ -26,10 +26,6 @@
-
-
-
-
diff --git a/bar-chart-stacked-grouped/script.js b/bar-chart-stacked-grouped/script.js
index 05ce522..d481c04 100644
--- a/bar-chart-stacked-grouped/script.js
+++ b/bar-chart-stacked-grouped/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, addAxisLabel, addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, addAxisLabel} from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let legend = d3.select('#legend');
@@ -157,9 +157,6 @@ function drawGraphic() {
.attr('class', 'legend--text')
.html((d) => d[0]);
- //create link to source
- addSource('source', config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/bar-chart-stacked-sm/config.js b/bar-chart-stacked-sm/config.js
index 09f462c..a8dee74 100644
--- a/bar-chart-stacked-sm/config.js
+++ b/bar-chart-stacked-sm/config.js
@@ -1,7 +1,6 @@
config = {
"graphicDataURL": "data.csv",
"colourPalette": ONSdivPlatte,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"xAxisTickFormat": {
"sm": ".0f",
diff --git a/bar-chart-stacked-sm/index.html b/bar-chart-stacked-sm/index.html
index 49a0ada..8700a72 100644
--- a/bar-chart-stacked-sm/index.html
+++ b/bar-chart-stacked-sm/index.html
@@ -26,10 +26,6 @@
-
-
-
-
diff --git a/bar-chart-stacked-sm/script.js b/bar-chart-stacked-sm/script.js
index 82a479e..bf45809 100644
--- a/bar-chart-stacked-sm/script.js
+++ b/bar-chart-stacked-sm/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, calculateChartWidth, addChartTitleLabel, addAxisLabel, addSource, addAnnotationRangeHorizontal } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, calculateChartWidth, addChartTitleLabel, addAxisLabel, addAnnotationRangeHorizontal } from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let legend = d3.select('#legend');
@@ -222,9 +222,6 @@ function drawGraphic() {
.style('grid-template-columns', `repeat(${config.legendColumns}, 1fr)`);
}
- //create source text
- addSource('source', config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/bar-chart-stacked/config.js b/bar-chart-stacked/config.js
index 551a840..1e9ac14 100644
--- a/bar-chart-stacked/config.js
+++ b/bar-chart-stacked/config.js
@@ -3,7 +3,6 @@ config = {
"colourPalette": ONSpalette,
"drawLegend": true, // set to false to remove the legend (still working on this)
"someOtherVariable": "someOtherValue",
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"xDomain": "auto",
// either "auto" or an array for the x domain e.g. [0,100]
diff --git a/bar-chart-stacked/index.html b/bar-chart-stacked/index.html
index cebcdb0..86b12f4 100644
--- a/bar-chart-stacked/index.html
+++ b/bar-chart-stacked/index.html
@@ -26,10 +26,6 @@
-
-
-
-
diff --git a/bar-chart-stacked/script.js b/bar-chart-stacked/script.js
index 66f875c..8357593 100644
--- a/bar-chart-stacked/script.js
+++ b/bar-chart-stacked/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, addAxisLabel, addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, addAxisLabel} from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let legend = d3.select('#legend');
@@ -138,9 +138,6 @@ function drawGraphic() {
wrapWidth: chartWidth
});
- //create link to source
- addSource('source', config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/bar-chart-with-dropdown/config.js b/bar-chart-with-dropdown/config.js
index 8c34a5c..47b27c3 100644
--- a/bar-chart-with-dropdown/config.js
+++ b/bar-chart-with-dropdown/config.js
@@ -1,8 +1,6 @@
config = {
-
"graphicDataURL": "data.csv",
"colourPalette": ONScolours.oceanBlue,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"dataLabels": {
"show": true,
diff --git a/bar-chart-with-dropdown/index.html b/bar-chart-with-dropdown/index.html
index ae4e793..0c68768 100644
--- a/bar-chart-with-dropdown/index.html
+++ b/bar-chart-with-dropdown/index.html
@@ -27,10 +27,6 @@
-
-
-
-
diff --git a/bar-chart-with-dropdown/script.js b/bar-chart-with-dropdown/script.js
index df8aa85..119bf05 100644
--- a/bar-chart-with-dropdown/script.js
+++ b/bar-chart-with-dropdown/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, addDataLabels, addAxisLabel, addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, addDataLabels, addAxisLabel} from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let select = d3.select('#select');
@@ -255,9 +255,6 @@ function drawGraphic() {
wrapWidth: chartWidth
});
- //create link to source
- addSource('source', config.sourceText);
-
$('#optionsSelect').val(config.defaultOption).trigger('chosen:updated');
changeData(config.defaultOption)
// updateLegend("Agriculture, forestry and fishing", 0)
diff --git a/bar-chart/config.js b/bar-chart/config.js
index b66c289..9c5d882 100644
--- a/bar-chart/config.js
+++ b/bar-chart/config.js
@@ -1,7 +1,6 @@
config = {
"graphicDataURL": "data.csv",
"colourPalette": ONScolours.oceanBlue,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "This chart has been hidden from screen readers. The main message of the chart is summarised in the chart title.",
"dataLabels": {
"show": true,
diff --git a/bar-chart/index.html b/bar-chart/index.html
index f3d1413..c2e8655 100644
--- a/bar-chart/index.html
+++ b/bar-chart/index.html
@@ -26,10 +26,6 @@
-
-
-
-
diff --git a/bar-chart/script.js b/bar-chart/script.js
index 8b27764..1fd98ec 100644
--- a/bar-chart/script.js
+++ b/bar-chart/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, addAxisLabel, addDataLabels, addSource } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, addAxisLabel, addDataLabels} from "../lib/helpers.js";
let graphic = d3.select("#graphic");
let pymChild = null;
@@ -115,10 +115,6 @@ function drawGraphic() {
wrapWidth: chartWidth
});
-
- //create link to source
- addSource('source', config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/beeswarm/config.js b/beeswarm/config.js
index cdd32e2..73a180a 100644
--- a/beeswarm/config.js
+++ b/beeswarm/config.js
@@ -1,7 +1,6 @@
config = {
"graphicDataURL": "dataethnicity.csv",
"colourPalette": ONScolours.oceanBlue,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"xAxisFormat": ".0f",
"topXAxis":true,
diff --git a/beeswarm/index.html b/beeswarm/index.html
index d01035e..264c848 100644
--- a/beeswarm/index.html
+++ b/beeswarm/index.html
@@ -26,9 +26,6 @@
-
-
-
diff --git a/beeswarm/script.js b/beeswarm/script.js
index b47a27e..6241a2d 100644
--- a/beeswarm/script.js
+++ b/beeswarm/script.js
@@ -3,7 +3,6 @@ import {
addSvg,
addAxisLabel,
createDelaunayOverlay,
- addSource,
removeSpaces,
AccurateBeeswarm
} from "../lib/helpers.js";
@@ -88,7 +87,7 @@ function drawGraphic() {
mode: "default",
idKey: "id",
labelKey: "label",
- hideLabel:true,
+ hideLabel: true,
groupKey: config.multiHighlight ? "" : "group",
onChange: (selectedValue) => {
overlay.clearHighlight();
@@ -325,7 +324,7 @@ function drawGraphic() {
highlightFillColour: ONScolours.highlightOrange
});
-
+
addAxisLabel({
svgContainer: chart,
@@ -336,9 +335,6 @@ function drawGraphic() {
wrapWidth: chartWidth,
});
- //create link to source
- addSource("source", config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/column-chart-ci-bands/config.js b/column-chart-ci-bands/config.js
index f3fd20c..7d5f2ca 100644
--- a/column-chart-ci-bands/config.js
+++ b/column-chart-ci-bands/config.js
@@ -2,7 +2,6 @@ config = {
"graphicDataURL": "data.csv",
"colourPalette": ONScolours.oceanBlue,
"lineColour": ONScolours.nightBlue,
- "sourceText": "Office for National Statistics",
"accessibleSummary": "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
"xAxisTickFormat": {
"sm": "%Y",
diff --git a/column-chart-ci-bands/index.html b/column-chart-ci-bands/index.html
index 706e307..d356b64 100644
--- a/column-chart-ci-bands/index.html
+++ b/column-chart-ci-bands/index.html
@@ -24,8 +24,6 @@
-
-
diff --git a/column-chart-ci-bands/script.js b/column-chart-ci-bands/script.js
index e456285..3f9d344 100644
--- a/column-chart-ci-bands/script.js
+++ b/column-chart-ci-bands/script.js
@@ -1,4 +1,4 @@
-import { initialise, wrap, addSvg, addAxisLabel, addSource, customTemporalAxis } from "../lib/helpers.js";
+import { initialise, wrap, addSvg, addAxisLabel, customTemporalAxis } from "../lib/helpers.js";
let graphic = d3.select('#graphic');
let pymChild = null;
@@ -217,10 +217,6 @@ function drawGraphic() {
.attr('class', 'legend--text')
.html(config.legendEstimateText);
-
- //create link to source
- addSource('source', config.sourceText);
-
//use pym to calculate chart dimensions
if (pymChild) {
pymChild.sendHeight();
diff --git a/column-chart-stacked-optional-line-sm/config.js b/column-chart-stacked-optional-line-sm/config.js
index fb5f9da..23411ff 100644
--- a/column-chart-stacked-optional-line-sm/config.js
+++ b/column-chart-stacked-optional-line-sm/config.js
@@ -4,7 +4,6 @@ config = {
showLine: true,
colourPalette: ONSpalette,
lineColour: ONScolours.black,
- sourceText: "Office for National Statistics",
accessibleSummary: "The chart canvas is hidden from screen readers. The main message is summarised by the chart title and the data behind the chart is available to download below.",
xAxisTickFormat: {
sm: "%b",
diff --git a/column-chart-stacked-optional-line-sm/index.html b/column-chart-stacked-optional-line-sm/index.html
index df9b7cb..89a2765 100644
--- a/column-chart-stacked-optional-line-sm/index.html
+++ b/column-chart-stacked-optional-line-sm/index.html
@@ -1,46 +1,35 @@
-
-
-
-
- Column And Line Small Multiple Chart Template
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-