diff --git a/src/sql/parts/query/editor/charting/chartView.ts b/src/sql/parts/query/editor/charting/chartView.ts index ddd44e4e31..09217cf8b7 100644 --- a/src/sql/parts/query/editor/charting/chartView.ts +++ b/src/sql/parts/query/editor/charting/chartView.ts @@ -275,7 +275,7 @@ export class ChartView implements IPanelView { dropdown.render(optionContainer); dropdown.onDidSelect(e => { if (this.options[option.configEntry] !== option.options[e.index]) { - this.options[option.configEntry] = option.options[e.index]; + this.options[option.configEntry] = option.options[e.index] === 'timeSeries' ? 'line' : option.options[e.index]; if (this.insight) { this.insight.options = this.options; }