반응형
Chart.defaults.bignumberbar = Chart.defaults.bar;
var custom = Chart.controllers.bar.extend({
draw: function(ease) {
Chart.controllers.bar.prototype.draw.call(this, ease);
var ctx = this.chart.chart.ctx;
var canvas = this.chart.chart.canvas;
ctx.save();
this.chart.chart.titleBlock.top = -10;
ctx.font = '30px Arial';
ctx.fillText('Test1234', (this.chart.width / 2) * 0.65, this.chart.height / 2);
ctx.restore();
}
});
Chart.controllers.bignumberbar = custom;
반응형
'엉터리 개발 이야기' 카테고리의 다른 글
[threejs] 연습-1 (0) | 2020.03.04 |
---|---|
sequelize raw query 간헐적 동작 안함 (0) | 2019.08.26 |
Gridster 번들링 (0) | 2019.03.13 |
webpack 설정 참고 사이트 (0) | 2019.03.12 |
ie11 symbol 정의 되지 않았습니다. 처리 방법 (0) | 2019.01.14 |