This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 4243723 data point no clipEdge (#6614)
4243723 is described below
commit 42437236b2b9ce385010730a6b85b4aa84a225c2
Author: zhaoyu89730105 <[email protected]>
AuthorDate: Thu Jan 10 12:35:20 2019 +0800
data point no clipEdge (#6614)
---
superset/assets/src/visualizations/nvd3/NVD3Vis.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/superset/assets/src/visualizations/nvd3/NVD3Vis.js
b/superset/assets/src/visualizations/nvd3/NVD3Vis.js
index 9377604..0b8fb2e 100644
--- a/superset/assets/src/visualizations/nvd3/NVD3Vis.js
+++ b/superset/assets/src/visualizations/nvd3/NVD3Vis.js
@@ -280,6 +280,7 @@ function nvd3Vis(element, props) {
}
chart.xScale(d3.time.scale.utc());
chart.interpolate(lineInterpolation);
+ chart.clipEdge(false);
break;
case 'time_pivot':