Skip to content

Commit d8638a9

Browse files
authored
Merge pull request #45612 from metacosm/fix-typo
Fix typo
2 parents ab85028 + a9bb751 commit d8638a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

extensions/vertx-http/dev-ui-resources/src/main/resources/dev-ui/echarts/echarts-horizontal-stacked-bar.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ class EchartsHorizontalStackedBar extends EchartsAbstractCanvas {
4545

4646
const sectionTitlesArray = this.sectionTitles.split(',');
4747
const sectionValuesArray = this.sectionValues.split(',');
48-
48+
4949
const option = new Object();
5050
// Tooltip
5151
option.tooltip = new Object();
5252
option.tooltip.trigger = "axis";
5353
// Legend
5454
option.legend = new Object();
5555
option.legend.show = false;
56-
56+
5757
// Grid
5858
option.grid = new Object();
5959
option.grid.left = '3%';
@@ -86,7 +86,7 @@ class EchartsHorizontalStackedBar extends EchartsAbstractCanvas {
8686
serie.name = title;
8787
serie.type = 'bar';
8888
serie.stack = 'total';
89-
serie.data = [value],
89+
serie.data = [value];
9090
serie.color = color;
9191
option.series.push(serie);
9292
}
@@ -95,4 +95,4 @@ class EchartsHorizontalStackedBar extends EchartsAbstractCanvas {
9595
}
9696

9797
}
98-
customElements.define('echarts-horizontal-stacked-bar', EchartsHorizontalStackedBar);
98+
customElements.define('echarts-horizontal-stacked-bar', EchartsHorizontalStackedBar);

0 commit comments

Comments
 (0)