为了账号安全,请及时绑定邮箱和手机立即绑定

如何在悬停条形图上添加“阴影”?

如何在悬停条形图上添加“阴影”?

偶然的你 2022-07-08 09:51:28
在chartJS中悬停索引时是否可以添加一些阴影?Somethink like in this answer在点悬停时添加一条线,但我会将它与条形图一起使用并使其看起来像这样:这是我的实际图表jsfiddle <div class="chart-area chart-reparti">      <canvas id="chartReparti" width="1600" height="250"></canvas> </div>        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>        <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.bundle.js"></script>var optionsReparti = {        maintainAspectRatio: false,        legend: {            display: true        },        tooltips: {            backgroundColor: '#f5f5f5',            titleFontColor: '#333',            bodyFontColor: '#666',            displayColors: true,            mode: 'index',            intersect: 0        },        responsive: true,        scales: {            yAxes: [{                id: 'importo',                gridLines: {                    drawBorder: false,                    borderDash: [4, 8],                    color: 'rgba(0,132,255,0.4)',                },                ticks: {                    beginAtZero: true,                    userCallback: function (value, index, values) {                        return "€" + value.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ".");                    }                }            }, {                id: 'qta',                gridLines: {                    drawBorder: false,                    borderDash: [4, 8],                    color: 'rgba(247,136,0,0.4)',                },                ticks: {                    beginAtZero: true                }            },            ],            xAxes: [{                categoryPercentage: 1,                barPercentage: 0.4,                gridLines: {                    drawBorder: false,                    color: 'rgba(225,78,202,0.1)',                    zeroLineColor: "transparent",                }            }]        }    };实际上,从这个答案中得到的修改插件的代码不包括在内,因为它根本不起作用。
查看完整描述

1 回答

?
慕神8447489

TA贡献1780条经验 获得超1个赞

你可以在绘制之前自定义代码


工作演示:https ://jsfiddle.net/4rasm1hc/


let draw = Chart.controllers.line.prototype.draw;

Chart.controllers.line = Chart.controllers.bar.extend({

    draw: function() {

        draw.apply(this, arguments);

        let ctx = this.chart.chart.ctx;

        let _stroke = ctx.stroke;

        ctx.stroke = function() {

            ctx.save();

            ctx.shadowColor = '#000000';

            ctx.shadowBlur = 10;

            ctx.shadowOffsetX = 0;

            ctx.shadowOffsetY = 4;

            _stroke.apply(this, arguments)

            ctx.restore();

        }

    }

});


Chart.defaults.LineWithLine = Chart.defaults.bar;

Chart.controllers.LineWithLine = Chart.controllers.bar.extend({

   draw: function(ease) {

      Chart.controllers.line.prototype.draw.call(this, ease);


      if (this.chart.tooltip._active && this.chart.tooltip._active.length) {

         var activePoint = this.chart.tooltip._active[0],

             ctx = this.chart.ctx,

             x = activePoint.tooltipPosition().x+15,

             topY =6000,

             width=activePoint._view.width,

             bottomY = 0;

        console.log(activePoint);

         // draw line

         ctx.save();

         ctx.beginPath();

         ctx.moveTo(x, topY);

         ctx.lineTo(x+width-10, bottomY+30);

         ctx.lineWidth = width*4;

         ctx.strokeStyle = '#e5e0e01a';

         ctx.stroke();

         ctx.restore();

      }

   }

});


查看完整回答
反对 回复 2022-07-08
  • 1 回答
  • 0 关注
  • 116 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信