Skip to content

Commit

Permalink
Removed line chart type (scatter still be hidden)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsv2013 committed Sep 3, 2024
1 parent 41286e7 commit e991640
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plotly/histogram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { DocumentHelper } from "../utils";

export class HistogramPlotly extends HistogramModel {
private _chartAdapter: PlotlyChartAdapter;
public static types = ["vbar", "bar", "line"];
public static types = ["vbar", "bar"];

constructor(
question: Question,
Expand Down
2 changes: 1 addition & 1 deletion src/plotly/selectBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export class PlotlyChartAdapter {

export class SelectBasePlotly extends SelectBase {
private _chartAdapter: PlotlyChartAdapter;
public static types = ["bar", "vbar", "pie", "doughnut", "line"];
public static types = ["bar", "vbar", "pie", "doughnut"];
public static displayModeBar: any = undefined;

constructor(
Expand Down

0 comments on commit e991640

Please sign in to comment.