Skip to content

Commit 6b1f5f8

Browse files
committed
Fix - VueUiXy - Fixed sparkline table behavior when time scale is toggled
1 parent 7bb4003 commit 6b1f5f8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/components/vue-ui-xy.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1106,14 +1106,13 @@ export default {
11061106
},
11071107
tableSparklineConfig() {
11081108
return {
1109-
11101109
responsiveBreakpoint: this.chartConfig.table.responsiveBreakpoint,
11111110
roundingValues: this.chartConfig.table.rounding,
11121111
showAverage: false,
11131112
showMedian: false,
11141113
showTotal: false,
11151114
fontFamily: this.chartConfig.chart.fontFamily,
1116-
colNames: this.chartConfig.chart.grid.labels.xAxisLabels.values.slice(0, this.maxSeries),
1115+
colNames: this.chartConfig.chart.grid.labels.xAxisLabels.values,
11171116
thead: {
11181117
backgroundColor: this.chartConfig.table.th.backgroundColor,
11191118
color: this.chartConfig.table.th.color,

0 commit comments

Comments
 (0)