New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

chartjs-chart-matrix

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chartjs-chart-matrix - npm Package Compare versions

Comparing version 1.0.0-alpha5 to 1.0.0-alpha6

18

dist/chartjs-chart-matrix.esm.js
/*!
* chartjs-chart-matrix v1.0.0-alpha5
* chartjs-chart-matrix v1.0.0-alpha6
* https://github.com/kurkle/chartjs-chart-matrix#readme
* (c) 2020 Jukka Kurkela
* (c) 2020 Jukka Kurkela
* Released under the MIT license

@@ -217,7 +217,9 @@ */

width,
height
height,
anchorX,
anchorY
} = options;
var properties = {
x: x - width / 2,
y: y - height / 2,
x: anchorX === 'left' ? x : x - width / (anchorX === 'right' ? 1 : 2),
y: anchorY === 'top' ? y : y - height / (anchorY === 'bottom' ? 1 : 2),
width,

@@ -245,3 +247,3 @@ height,

MatrixController.prototype.dataElementType = Rectangle;
MatrixController.prototype.dataElementOptions = ['backgroundColor', 'borderColor', 'borderWidth', 'width', 'height'];
MatrixController.prototype.dataElementOptions = ['backgroundColor', 'borderColor', 'borderWidth', 'anchorX', 'anchorY', 'width', 'height'];

@@ -260,3 +262,5 @@ Chart.controllers.matrix = MatrixController;

}
}
},
anchorX: 'center',
anchorY: 'center'
},

@@ -263,0 +267,0 @@ tooltips: {

/*!
* chartjs-chart-matrix v1.0.0-alpha5
* chartjs-chart-matrix v1.0.0-alpha6
* https://github.com/kurkle/chartjs-chart-matrix#readme
* (c) 2020 Jukka Kurkela
* (c) 2020 Jukka Kurkela
* Released under the MIT license
*/
import t from"chart.js";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(t[i]=r[i])}return t}).apply(this,arguments)}function r(t,e){var{x:r,y:i,width:o,height:n}=t.getProps(["x","y","width","height"],e);return{left:r,top:i,right:r+o,bottom:i+n}}function i(t,e,r){return Math.max(Math.min(t,r),e)}function o(e){var o=r(e),n=o.right-o.left,a=o.bottom-o.top,l=function(e,r,o){var n,a,l,h,s=e.options.borderWidth;return t.helpers.isObject(s)?(n=+s.top||0,a=+s.right||0,l=+s.bottom||0,h=+s.left||0):n=a=l=h=+s||0,{t:i(n,0,o),r:i(a,0,r),b:i(l,0,o),l:i(h,0,r)}}(e,n/2,a/2);return{outer:{x:o.left,y:o.top,w:n,h:a},inner:{x:o.left+l.l,y:o.top+l.t,w:n-l.l-l.r,h:a-l.t-l.b}}}function n(t,e,i,o){var n=null===e,a=null===i,l=!(!t||n&&a)&&r(t,o);return l&&(n||e>=l.left&&e<=l.right)&&(a||i>=l.top&&i<=l.bottom)}class a extends t.Element{constructor(t){super(),this.options=void 0,this.width=void 0,this.height=void 0,t&&e(this,t)}draw(t){var e=this.options,{inner:r,outer:i}=o(this);t.save(),i.w!==r.w||i.h!==r.h?(t.beginPath(),t.rect(i.x,i.y,i.w,i.h),t.clip(),t.rect(r.x,r.y,r.w,r.h),t.fillStyle=e.backgroundColor,t.fill(),t.fillStyle=e.borderColor,t.fill("evenodd")):(t.fillStyle=e.backgroundColor,t.fillRect(r.x,r.y,r.w,r.h)),t.restore()}inRange(t,e,r){return n(this,t,e,r)}inXRange(t,e){return n(this,t,null,e)}inYRange(t,e){return n(this,null,t,e)}getCenterPoint(t){var{x:e,y:r,width:i,height:o}=this.getProps(["x","y","width","height"],t);return{x:e+i/2,y:r+o/2}}tooltipPosition(){return this.getCenterPoint()}getRange(t){return"x"===t?this.width/2:this.height/2}}var l,h,s;s="rectangle",(h="_type")in(l=a)?Object.defineProperty(l,h,{value:s,enumerable:!0,configurable:!0,writable:!0}):l[h]=s;class d extends t.DatasetController{update(t){var e=this._cachedMeta;this.updateElements(e.data,0,t)}updateElements(t,e,r){for(var i=this,o="reset"===r,{xScale:n,yScale:a}=i._cachedMeta,l=i.resolveDataElementOptions(e,r),h=i.getSharedOptions(r,t[e],l),s=0;s<t.length;s++){var d=e+s,p=!o&&i.getParsed(d),u=o?n.getBasePixel():n.getPixelForValue(p.x),g=o?a.getBasePixel():a.getPixelForValue(p.y),c=i.resolveDataElementOptions(s,r),{width:f,height:y}=c,x={x:u-f/2,y:g-y/2,width:f,height:y,options:c};i.updateElement(t[s],d,x,r)}i.updateSharedOptions(h,r)}draw(){var t,e,r=this.getMeta().data||[];for(t=0,e=r.length;t<e;++t)r[t].draw(this._ctx)}}d.prototype.dataElementType=a,d.prototype.dataElementOptions=["backgroundColor","borderColor","borderWidth","width","height"],t.controllers.matrix=d,t.defaults.matrix={hover:{mode:"nearest",intersect:!0},datasets:{animation:{numbers:{type:"number",properties:["x","y","width","height"]}}},tooltips:{mode:"nearest",intersect:!0},scales:{x:{type:"linear",offset:!0},y:{type:"linear",reverse:!0}},elements:{rectangle:{width:20,height:20}}};
import t from"chart.js";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&(t[i]=r[i])}return t}).apply(this,arguments)}function r(t,e){var{x:r,y:i,width:o,height:n}=t.getProps(["x","y","width","height"],e);return{left:r,top:i,right:r+o,bottom:i+n}}function i(t,e,r){return Math.max(Math.min(t,r),e)}function o(e){var o=r(e),n=o.right-o.left,a=o.bottom-o.top,h=function(e,r,o){var n,a,h,l,s=e.options.borderWidth;return t.helpers.isObject(s)?(n=+s.top||0,a=+s.right||0,h=+s.bottom||0,l=+s.left||0):n=a=h=l=+s||0,{t:i(n,0,o),r:i(a,0,r),b:i(h,0,o),l:i(l,0,r)}}(e,n/2,a/2);return{outer:{x:o.left,y:o.top,w:n,h:a},inner:{x:o.left+h.l,y:o.top+h.t,w:n-h.l-h.r,h:a-h.t-h.b}}}function n(t,e,i,o){var n=null===e,a=null===i,h=!(!t||n&&a)&&r(t,o);return h&&(n||e>=h.left&&e<=h.right)&&(a||i>=h.top&&i<=h.bottom)}class a extends t.Element{constructor(t){super(),this.options=void 0,this.width=void 0,this.height=void 0,t&&e(this,t)}draw(t){var e=this.options,{inner:r,outer:i}=o(this);t.save(),i.w!==r.w||i.h!==r.h?(t.beginPath(),t.rect(i.x,i.y,i.w,i.h),t.clip(),t.rect(r.x,r.y,r.w,r.h),t.fillStyle=e.backgroundColor,t.fill(),t.fillStyle=e.borderColor,t.fill("evenodd")):(t.fillStyle=e.backgroundColor,t.fillRect(r.x,r.y,r.w,r.h)),t.restore()}inRange(t,e,r){return n(this,t,e,r)}inXRange(t,e){return n(this,t,null,e)}inYRange(t,e){return n(this,null,t,e)}getCenterPoint(t){var{x:e,y:r,width:i,height:o}=this.getProps(["x","y","width","height"],t);return{x:e+i/2,y:r+o/2}}tooltipPosition(){return this.getCenterPoint()}getRange(t){return"x"===t?this.width/2:this.height/2}}var h,l,s;s="rectangle",(l="_type")in(h=a)?Object.defineProperty(h,l,{value:s,enumerable:!0,configurable:!0,writable:!0}):h[l]=s;class d extends t.DatasetController{update(t){var e=this._cachedMeta;this.updateElements(e.data,0,t)}updateElements(t,e,r){for(var i=this,o="reset"===r,{xScale:n,yScale:a}=i._cachedMeta,h=i.resolveDataElementOptions(e,r),l=i.getSharedOptions(r,t[e],h),s=0;s<t.length;s++){var d=e+s,c=!o&&i.getParsed(d),p=o?n.getBasePixel():n.getPixelForValue(c.x),u=o?a.getBasePixel():a.getPixelForValue(c.y),g=i.resolveDataElementOptions(s,r),{width:f,height:y,anchorX:m,anchorY:x}=g,b={x:"left"===m?p:p-f/("right"===m?1:2),y:"top"===x?u:u-y/("bottom"===x?1:2),width:f,height:y,options:g};i.updateElement(t[s],d,b,r)}i.updateSharedOptions(l,r)}draw(){var t,e,r=this.getMeta().data||[];for(t=0,e=r.length;t<e;++t)r[t].draw(this._ctx)}}d.prototype.dataElementType=a,d.prototype.dataElementOptions=["backgroundColor","borderColor","borderWidth","anchorX","anchorY","width","height"],t.controllers.matrix=d,t.defaults.matrix={hover:{mode:"nearest",intersect:!0},datasets:{animation:{numbers:{type:"number",properties:["x","y","width","height"]}},anchorX:"center",anchorY:"center"},tooltips:{mode:"nearest",intersect:!0},scales:{x:{type:"linear",offset:!0},y:{type:"linear",reverse:!0}},elements:{rectangle:{width:20,height:20}}};
/*!
* chartjs-chart-matrix v1.0.0-alpha5
* chartjs-chart-matrix v1.0.0-alpha6
* https://github.com/kurkle/chartjs-chart-matrix#readme
* (c) 2020 Jukka Kurkela
* (c) 2020 Jukka Kurkela
* Released under the MIT license

@@ -354,6 +354,8 @@ */

var width = options.width,
height = options.height;
height = options.height,
anchorX = options.anchorX,
anchorY = options.anchorY;
var properties = {
x: x - width / 2,
y: y - height / 2,
x: anchorX === 'left' ? x : x - width / (anchorX === 'right' ? 1 : 2),
y: anchorY === 'top' ? y : y - height / (anchorY === 'bottom' ? 1 : 2),
width: width,

@@ -384,3 +386,3 @@ height: height,

MatrixController.prototype.dataElementType = Rectangle;
MatrixController.prototype.dataElementOptions = ['backgroundColor', 'borderColor', 'borderWidth', 'width', 'height'];
MatrixController.prototype.dataElementOptions = ['backgroundColor', 'borderColor', 'borderWidth', 'anchorX', 'anchorY', 'width', 'height'];

@@ -399,3 +401,5 @@ Chart.controllers.matrix = MatrixController;

}
}
},
anchorX: 'center',
anchorY: 'center'
},

@@ -402,0 +406,0 @@ tooltips: {

/*!
* chartjs-chart-matrix v1.0.0-alpha5
* chartjs-chart-matrix v1.0.0-alpha6
* https://github.com/kurkle/chartjs-chart-matrix#readme
* (c) 2020 Jukka Kurkela
* (c) 2020 Jukka Kurkela
* Released under the MIT license
*/
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(require("chart.js")):"function"==typeof define&&define.amd?define(["chart.js"],e):e((t=t||self).Chart)}(this,(function(t){"use strict";function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function r(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function n(t,e,n){return e&&r(t.prototype,e),n&&r(t,n),t}function o(){return(o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t}).apply(this,arguments)}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&u(t,e)}function a(t){return(a=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function u(t,e){return(u=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function l(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}function c(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function f(t,e){return!e||"object"!=typeof e&&"function"!=typeof e?c(t):e}function h(t){return function(){var e,r=a(t);if(l()){var n=a(this).constructor;e=Reflect.construct(r,arguments,n)}else e=r.apply(this,arguments);return f(this,e)}}function s(t,e){var r=t.getProps(["x","y","width","height"],e),n=r.x,o=r.y;return{left:n,top:o,right:n+r.width,bottom:o+r.height}}function p(t,e,r){return Math.max(Math.min(t,r),e)}function y(e){var r=s(e),n=r.right-r.left,o=r.bottom-r.top,i=function(e,r,n){var o,i,a,u,l=e.options.borderWidth;return t.helpers.isObject(l)?(o=+l.top||0,i=+l.right||0,a=+l.bottom||0,u=+l.left||0):o=i=a=u=+l||0,{t:p(o,0,n),r:p(i,0,r),b:p(a,0,n),l:p(u,0,r)}}(e,n/2,o/2);return{outer:{x:r.left,y:r.top,w:n,h:o},inner:{x:r.left+i.l,y:r.top+i.t,w:n-i.l-i.r,h:o-i.t-i.b}}}function d(t,e,r,n){var o=null===e,i=null===r,a=!(!t||o&&i)&&s(t,n);return a&&(o||e>=a.left&&e<=a.right)&&(i||r>=a.top&&r<=a.bottom)}var g,v,b,w=function(t){i(a,t);var r=h(a);function a(t){var n;return e(this,a),(n=r.call(this)).options=void 0,n.width=void 0,n.height=void 0,t&&o(c(n),t),n}return n(a,[{key:"draw",value:function(t){var e=this.options,r=y(this),n=r.inner,o=r.outer;t.save(),o.w!==n.w||o.h!==n.h?(t.beginPath(),t.rect(o.x,o.y,o.w,o.h),t.clip(),t.rect(n.x,n.y,n.w,n.h),t.fillStyle=e.backgroundColor,t.fill(),t.fillStyle=e.borderColor,t.fill("evenodd")):(t.fillStyle=e.backgroundColor,t.fillRect(n.x,n.y,n.w,n.h)),t.restore()}},{key:"inRange",value:function(t,e,r){return d(this,t,e,r)}},{key:"inXRange",value:function(t,e){return d(this,t,null,e)}},{key:"inYRange",value:function(t,e){return d(this,null,t,e)}},{key:"getCenterPoint",value:function(t){var e=this.getProps(["x","y","width","height"],t),r=e.x,n=e.y;return{x:r+e.width/2,y:n+e.height/2}}},{key:"tooltipPosition",value:function(){return this.getCenterPoint()}},{key:"getRange",value:function(t){return"x"===t?this.width/2:this.height/2}}]),a}((t=t&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t).Element);b="rectangle",(v="_type")in(g=w)?Object.defineProperty(g,v,{value:b,enumerable:!0,configurable:!0,writable:!0}):g[v]=b;var m=function(t){i(o,t);var r=h(o);function o(){return e(this,o),r.apply(this,arguments)}return n(o,[{key:"update",value:function(t){var e=this._cachedMeta;this.updateElements(e.data,0,t)}},{key:"updateElements",value:function(t,e,r){for(var n=this,o="reset"===r,i=n._cachedMeta,a=i.xScale,u=i.yScale,l=n.resolveDataElementOptions(e,r),c=n.getSharedOptions(r,t[e],l),f=0;f<t.length;f++){var h=e+f,s=!o&&n.getParsed(h),p=o?a.getBasePixel():a.getPixelForValue(s.x),y=o?u.getBasePixel():u.getPixelForValue(s.y),d=n.resolveDataElementOptions(f,r),g=d.width,v=d.height,b={x:p-g/2,y:y-v/2,width:g,height:v,options:d};n.updateElement(t[f],h,b,r)}n.updateSharedOptions(c,r)}},{key:"draw",value:function(){var t,e,r=this.getMeta().data||[];for(t=0,e=r.length;t<e;++t)r[t].draw(this._ctx)}}]),o}(t.DatasetController);m.prototype.dataElementType=w,m.prototype.dataElementOptions=["backgroundColor","borderColor","borderWidth","width","height"],t.controllers.matrix=m,t.defaults.matrix={hover:{mode:"nearest",intersect:!0},datasets:{animation:{numbers:{type:"number",properties:["x","y","width","height"]}}},tooltips:{mode:"nearest",intersect:!0},scales:{x:{type:"linear",offset:!0},y:{type:"linear",reverse:!0}},elements:{rectangle:{width:20,height:20}}}}));
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(require("chart.js")):"function"==typeof define&&define.amd?define(["chart.js"],e):e((t=t||self).Chart)}(this,(function(t){"use strict";function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function r(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function n(t,e,n){return e&&r(t.prototype,e),n&&r(t,n),t}function o(){return(o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var r=arguments[e];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(t[n]=r[n])}return t}).apply(this,arguments)}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&u(t,e)}function a(t){return(a=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function u(t,e){return(u=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function l(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}function c(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function f(t,e){return!e||"object"!=typeof e&&"function"!=typeof e?c(t):e}function h(t){return function(){var e,r=a(t);if(l()){var n=a(this).constructor;e=Reflect.construct(r,arguments,n)}else e=r.apply(this,arguments);return f(this,e)}}function s(t,e){var r=t.getProps(["x","y","width","height"],e),n=r.x,o=r.y;return{left:n,top:o,right:n+r.width,bottom:o+r.height}}function p(t,e,r){return Math.max(Math.min(t,r),e)}function y(e){var r=s(e),n=r.right-r.left,o=r.bottom-r.top,i=function(e,r,n){var o,i,a,u,l=e.options.borderWidth;return t.helpers.isObject(l)?(o=+l.top||0,i=+l.right||0,a=+l.bottom||0,u=+l.left||0):o=i=a=u=+l||0,{t:p(o,0,n),r:p(i,0,r),b:p(a,0,n),l:p(u,0,r)}}(e,n/2,o/2);return{outer:{x:r.left,y:r.top,w:n,h:o},inner:{x:r.left+i.l,y:r.top+i.t,w:n-i.l-i.r,h:o-i.t-i.b}}}function d(t,e,r,n){var o=null===e,i=null===r,a=!(!t||o&&i)&&s(t,n);return a&&(o||e>=a.left&&e<=a.right)&&(i||r>=a.top&&r<=a.bottom)}var g,v,b,w=function(t){i(a,t);var r=h(a);function a(t){var n;return e(this,a),(n=r.call(this)).options=void 0,n.width=void 0,n.height=void 0,t&&o(c(n),t),n}return n(a,[{key:"draw",value:function(t){var e=this.options,r=y(this),n=r.inner,o=r.outer;t.save(),o.w!==n.w||o.h!==n.h?(t.beginPath(),t.rect(o.x,o.y,o.w,o.h),t.clip(),t.rect(n.x,n.y,n.w,n.h),t.fillStyle=e.backgroundColor,t.fill(),t.fillStyle=e.borderColor,t.fill("evenodd")):(t.fillStyle=e.backgroundColor,t.fillRect(n.x,n.y,n.w,n.h)),t.restore()}},{key:"inRange",value:function(t,e,r){return d(this,t,e,r)}},{key:"inXRange",value:function(t,e){return d(this,t,null,e)}},{key:"inYRange",value:function(t,e){return d(this,null,t,e)}},{key:"getCenterPoint",value:function(t){var e=this.getProps(["x","y","width","height"],t),r=e.x,n=e.y;return{x:r+e.width/2,y:n+e.height/2}}},{key:"tooltipPosition",value:function(){return this.getCenterPoint()}},{key:"getRange",value:function(t){return"x"===t?this.width/2:this.height/2}}]),a}((t=t&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t).Element);b="rectangle",(v="_type")in(g=w)?Object.defineProperty(g,v,{value:b,enumerable:!0,configurable:!0,writable:!0}):g[v]=b;var m=function(t){i(o,t);var r=h(o);function o(){return e(this,o),r.apply(this,arguments)}return n(o,[{key:"update",value:function(t){var e=this._cachedMeta;this.updateElements(e.data,0,t)}},{key:"updateElements",value:function(t,e,r){for(var n=this,o="reset"===r,i=n._cachedMeta,a=i.xScale,u=i.yScale,l=n.resolveDataElementOptions(e,r),c=n.getSharedOptions(r,t[e],l),f=0;f<t.length;f++){var h=e+f,s=!o&&n.getParsed(h),p=o?a.getBasePixel():a.getPixelForValue(s.x),y=o?u.getBasePixel():u.getPixelForValue(s.y),d=n.resolveDataElementOptions(f,r),g=d.width,v=d.height,b=d.anchorX,w=d.anchorY,m={x:"left"===b?p:p-g/("right"===b?1:2),y:"top"===w?y:y-v/("bottom"===w?1:2),width:g,height:v,options:d};n.updateElement(t[f],h,m,r)}n.updateSharedOptions(c,r)}},{key:"draw",value:function(){var t,e,r=this.getMeta().data||[];for(t=0,e=r.length;t<e;++t)r[t].draw(this._ctx)}}]),o}(t.DatasetController);m.prototype.dataElementType=w,m.prototype.dataElementOptions=["backgroundColor","borderColor","borderWidth","anchorX","anchorY","width","height"],t.controllers.matrix=m,t.defaults.matrix={hover:{mode:"nearest",intersect:!0},datasets:{animation:{numbers:{type:"number",properties:["x","y","width","height"]}},anchorX:"center",anchorY:"center"},tooltips:{mode:"nearest",intersect:!0},scales:{x:{type:"linear",offset:!0},y:{type:"linear",reverse:!0}},elements:{rectangle:{width:20,height:20}}}}));
{
"name": "chartjs-chart-matrix",
"version": "1.0.0-alpha5",
"version": "1.0.0-alpha6",
"description": "Chart.js module for creating matrix charts",

@@ -20,3 +20,2 @@ "main": "dist/chartjs-chart-matrix.js",

"files": [
"bower.json",
"dist/*.js"

@@ -48,3 +47,2 @@ ],

"gulp-eslint": "^6.0.0",
"gulp-file": "^0.4.0",
"gulp-replace": "^1.0.0",

@@ -51,0 +49,0 @@ "gulp-streamify": "^1.0.2",

# chartjs-chart-matrix
[Chart.js](https://www.chartjs.org/) module for creating matrix charts
[Chart.js](https://www.chartjs.org/) **v3.0.0-alpha** module for creating matrix charts

@@ -5,0 +5,0 @@ ![npm](https://img.shields.io/npm/v/chartjs-chart-matrix.svg) [![release](https://img.shields.io/github/release/kurkle/chartjs-chart-matrix.svg?style=flat-square)](https://github.com/kurkle/chartjs-chart-matrix/releases/latest) [![travis](https://img.shields.io/travis/kurkle/chartjs-chart-matrix.svg?style=flat-square&maxAge=60)](https://travis-ci.org/kurkle/chartjs-chart-matrix) ![npm bundle size](https://img.shields.io/bundlephobia/min/chartjs-chart-matrix.svg) ![GitHub](https://img.shields.io/github/license/kurkle/chartjs-chart-matrix.svg)

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc