Skip to content

Commit

Permalink
Change vz-line-chart default to off by default since Polymer/polymer#…
Browse files Browse the repository at this point in the history
…1812

Change: 151755389
  • Loading branch information
Cassandra Xia authored and tensorflower-gardener committed Mar 30, 2017
1 parent b77eac2 commit 1d95325
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/vz_line_chart/vz-line-chart.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@

ignoreYOutliers: {
type: Boolean,
value: true,
value: false,
},

/**
Expand Down
2 changes: 1 addition & 1 deletion components/vz_line_chart/vz-line-chart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ module VZ {
this.colorScale = colorScale;
this.tooltip = tooltip;
this.datasets = [];
this._ignoreYOutliers = true;
this._ignoreYOutliers = false;
// lastPointDataset is a dataset that contains just the last point of
// every dataset we're currently drawing.
this.lastPointsDataset = new Plottable.Dataset();
Expand Down

0 comments on commit 1d95325

Please sign in to comment.