plotly.js
Version:
The open source javascript graphing library that powers plotly
46 lines (35 loc) • 1.42 kB
JavaScript
var d3 = require('@plotly/d3');
var Color = require('../../components/color');
var stylePoints = require('../scatter/style').stylePoints;
module.exports = function style(gd) {
var s = d3.select(gd).selectAll('g.trace.violins');
s.style('opacity', function(d) { return d[0].trace.opacity; });
s.each(function(d) {
var trace = d[0].trace;
var sel = d3.select(this);
var box = trace.box || {};
var boxLine = box.line || {};
var meanline = trace.meanline || {};
var meanLineWidth = meanline.width;
sel.selectAll('path.violin')
.style('stroke-width', trace.line.width + 'px')
.call(Color.stroke, trace.line.color)
.call(Color.fill, trace.fillcolor);
sel.selectAll('path.box')
.style('stroke-width', boxLine.width + 'px')
.call(Color.stroke, boxLine.color)
.call(Color.fill, box.fillcolor);
var meanLineStyle = {
'stroke-width': meanLineWidth + 'px',
'stroke-dasharray': (2 * meanLineWidth) + 'px,' + meanLineWidth + 'px'
};
sel.selectAll('path.mean')
.style(meanLineStyle)
.call(Color.stroke, meanline.color);
sel.selectAll('path.meanline')
.style(meanLineStyle)
.call(Color.stroke, meanline.color);
stylePoints(sel, trace, gd);
});
};
;