第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在懸停條形圖上添加“陰影”?

如何在懸停條形圖上添加“陰影”?

偶然的你 2022-07-08 09:51:28
在chartJS中懸停索引時(shí)是否可以添加一些陰影?Somethink like in this answer在點(diǎn)懸停時(shí)添加一條線,但我會(huì)將它與條形圖一起使用并使其看起來像這樣:這是我的實(shí)際圖表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",                }            }]        }    };實(shí)際上,從這個(gè)答案中得到的修改插件的代碼不包括在內(nèi),因?yàn)樗静黄鹱饔谩?
查看完整描述

1 回答

?
慕神8447489

TA貢獻(xiàn)1780條經(jīng)驗(yàn) 獲得超1個(gè)贊

你可以在繪制之前自定義代碼


工作演示: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();

      }

   }

});


查看完整回答
反對(duì) 回復(fù) 2022-07-08
  • 1 回答
  • 0 關(guān)注
  • 140 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)