Skip to content
This repository was archived by the owner on Nov 25, 2021. It is now read-only.

Commit 324631c

Browse files
authoredFeb 28, 2020
Merge pull request #72 from datavisyn/release-2.3.0
Release 2.3.0
2 parents 9a3ee5c + 4b920cc commit 324631c

File tree

7 files changed

+29
-7
lines changed

7 files changed

+29
-7
lines changed
 

‎.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @dg-datavisyn

‎README.md

+8
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,14 @@ interface IBaseStyling {
7979
*/
8080
outlierColor: string;
8181

82+
/**
83+
* to fill color below the median line of the box
84+
* @default see rectangle.lowerColor
85+
* @scriptable
86+
* @indexable
87+
*/
88+
lowerColor: string;
89+
8290
/**
8391
* radius used to render items
8492
* @default 0 so disabled

‎package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"name": "chartjs-chart-box-and-violin-plot",
33
"description": "Chart.js module for charting boxplots",
4-
"version": "2.2.1",
4+
"version": "2.3.0",
55
"author": {
66
"name": "datavisyn",
77
"email": "contact@datavisyn.io",
88
"url": "https://www.datavisyn.io"
99
},
10-
"contributors": [
11-
{
10+
"contributors": [{
1211
"name": "Samuel Gratzl",
1312
"email": "sam@sgratzl.com",
1413
"url": "https://www.sgratzl.com"

‎samples/vertical.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,16 @@
3838
borderColor: window.chartColors.red,
3939
borderWidth: 1,
4040
data: samples.boxplots({count: 7, random: random}),
41-
outlierColor: '#999999'
41+
outlierColor: '#999999',
42+
lowerColor: '#461e7d'
4243
}, {
4344
label: 'Dataset 2',
4445
backgroundColor: color(window.chartColors.blue).alpha(0.5).rgbString(),
4546
borderColor: window.chartColors.blue,
4647
borderWidth: 1,
4748
data: samples.boxplotsArray({count: 7, random: random}),
48-
outlierColor: '#999999'
49+
outlierColor: '#999999',
50+
lowerColor: '#461e7d'
4951
}]
5052

5153
};

‎src/controllers/base.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ export function toFixed(value) {
2525
return Number.parseFloat(value).toFixed(decimals);
2626
}
2727

28-
const configKeys = ['outlierRadius', 'itemRadius', 'itemStyle', 'itemBackgroundColor', 'itemBorderColor', 'outlierColor', 'medianColor', 'hitPadding', 'outlierHitRadius'];
29-
const configKeyIsColor = [false, false, false, true, true, true, true, false, false];
28+
const configKeys = ['outlierRadius', 'itemRadius', 'itemStyle', 'itemBackgroundColor', 'itemBorderColor', 'outlierColor', 'medianColor', 'hitPadding', 'outlierHitRadius', 'lowerColor'];
29+
const configKeyIsColor = [false, false, false, true, true, true, true, false, false, true];
3030

3131
const array = {
3232
_elementOptions() {

‎src/elements/base.js

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export const defaults = {
88
borderWidth: 1,
99
outlierRadius: 2,
1010
outlierColor: Chart.defaults.global.elements.rectangle.backgroundColor,
11+
lowerColor: Chart.defaults.global.elements.rectangle.lowerColor,
1112
medianColor: null,
1213
itemRadius: 0,
1314
itemStyle: 'circle',

‎src/elements/boxandwhiskers.js

+11
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,17 @@ const BoxAndWiskers = Chart.elements.BoxAndWhiskers = ArrayElementBase.extend({
104104
ctx.beginPath();
105105
ctx.moveTo(x0, boxplot.median);
106106
ctx.lineTo(x0 + width, boxplot.median);
107+
108+
// fill the part below the median with lowerColor
109+
if (vm.lowerColor) {
110+
ctx.fillStyle = vm.lowerColor;
111+
if (boxplot.q3 > boxplot.q1) {
112+
ctx.fillRect(x0, boxplot.median, width, boxplot.q3 - boxplot.median);
113+
} else {
114+
ctx.fillRect(x0, boxplot.median, width, boxplot.q1 - boxplot.median);
115+
}
116+
}
117+
107118
ctx.closePath();
108119
ctx.stroke();
109120
ctx.restore();

0 commit comments

Comments
 (0)
This repository has been archived.