You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// create a chart
var columnChart = d4.baseChart()
// mix in a feature to the chart
.mixin([{name: 'bars', feature: d4.features.stacked-shapes-series}])
// when using the feature apply a filter to the rects.
.using('bars',function(bar){
bar.svgFilter('feGaussianBlur', function(filter){
filter
.in("SourceGraphic")
.stdDeviation("5");
});
});
Thoughts?
The text was updated successfully, but these errors were encountered:
Something like this is the proposed API:
Thoughts?
The text was updated successfully, but these errors were encountered: