Chart JS:始终在多数据集折线图中显示工具提示 [英] Chart JS: Always show tooltips in a multi dataset line chart

查看:22
本文介绍了Chart JS:始终在多数据集折线图中显示工具提示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在 ChartJS 中始终显示多数据集折线图的工具提示

现有解决方案仅适用于单个数据集(例如

只需像这样更改您的选项

var 选项 = {显示工具提示:真,onAnimationComplete:函数(){for (var dataIndex = 0; dataIndex < this.datasets[0].points.length; dataIndex++) {//以下内容几乎是来自 Chart.js 库的复制粘贴var tooltipLabels = [],工具提示颜色 = [],中值位置 =(函数(索引){//获取该特定索引处的所有点var 元素 = [],数据采集​​,xPositions = [],yPositions = [],x最大,y最大,最小,最小;Chart.helpers.each(this.datasets, function (dataset) {dataCollection = dataset.points;if (dataCollection[dataIndex] && dataCollection[dataIndex].hasValue()) {Elements.push(dataCollection[dataIndex]);}});Chart.helpers.each(元素,功能(元素){xPositions.push(element.x);yPositions.push(element.y);//包括有关元素的任何颜色信息tooltipLabels.push(Chart.helpers.template(this.options.multiTooltipTemplate, element));tooltipColors.push({填充: element._saved.fillColor ||element.fillColor,笔画: element._saved.strokeColor ||element.strokeColor});}, 这);yMin = Chart.helpers.min(yPositions);yMax = Chart.helpers.max(yPositions);xMin = Chart.helpers.min(xPositions);xMax = Chart.helpers.max(xPositions);返回 {x: (xMin > this.chart.width/2) ?xMin : xMax,y: (yMin + yMax)/2};}).call(this, dataIndex);新 Chart.MultiTooltip({x:中值位置.x,y:中值位置.y,xPadding: this.options.tooltipXPadding,yPadding: this.options.tooltipYPadding,xOffset: this.options.tooltipXOffset,填充颜​​色:this.options.tooltipFillColor,textColor: this.options.tooltipFontColor,fontFamily:this.options.tooltipFontFamily,fontStyle: this.options.tooltipFontStyle,fontSize: this.options.tooltipFontSize,titleTextColor: this.options.tooltipTitleFontColor,titleFontFamily:this.options.tooltipTitleFontFamily,titleFontStyle: this.options.tooltipTitleFontStyle,titleFontSize: this.options.tooltipTitleFontSize,角半径:this.options.tooltipCornerRadius,标签:工具提示标签,LegendColors:工具提示颜色,LegendColorBackground:this.options.multiTooltipKeyBackground,标题:this.scale.xLabels[dataIndex],图表:this.chart,ctx: this.chart.ctx,自定义:this.options.customTooltips}).画();}},工具提示事件:[],数据集填充:真,}

<小时>

小提琴 - https://jsfiddle.net/racqd639/

I'm trying to always show tooltips for a multi dataset line chart in ChartJS

The existing solutions only work for a single dataset (e.g. Chart.js - Doughnut show tooltips always?) like so:

var options = 
{
    tooltipTemplate: "<%= value %>",

    onAnimationComplete: function()
    {
        this.showTooltip(this.segments, true);

        //Show tooltips in bar chart (issue: multiple datasets doesnt work http://jsfiddle.net/5gyfykka/14/)
        //this.showTooltip(this.datasets[0].bars, true);

        //Show tooltips in line chart (issue: multiple datasets doesnt work http://jsfiddle.net/5gyfykka/14/)
        //this.showTooltip(this.datasets[0].points, true);  
    },

    tooltipEvents: [],

    showTooltips: true
}

var context = $('#chart').get(0).getContext('2d');
var chart = new Chart(context).Pie(data, options);  

The existing JS Fiddle for working single dataset solution: http://jsfiddle.net/5gyfykka/14/

I have managed to get How to display Line Chart dataset point labels with Chart.js? working using a different onAnimationComplete function

 onAnimationComplete: function () {
       var ctx = document.getElementById("LineWithLine").getContext("2d");
       ctx.font = '.8rem "Gotham Book",sans-serif';
                ctx.fontWeight = 'bold';
                ctx.fillStyle = '#000';
                ctx.textAlign="right";
            var self = this;
                $(self.datasets).each(function(idx,dataset){
                    $(dataset.points).each(function(pdx,pointinfo){
                        if ( pointinfo.value !== null ) {
                            ctx.fillText(pointinfo.value,pointinfo.x,pointinfo.y - 18);
                        }
                    });
                });         
    },

And while this works, it's not as nice as the multi tooltip that Chart JS provides.

JS Fiddle: https://jsfiddle.net/hdnu4bpa/

解决方案

You need to kind of take control over the tootip generation process (i.e. copy paste the relevant section of code from the Chart.js library :-))

Show Tooltips automatically (without hover) for Multi Series Line Charts

Here's how its going to look

Just change your options like this

var options = {
    showTooltips: true,
    onAnimationComplete: function () {
        for (var dataIndex = 0; dataIndex < this.datasets[0].points.length; dataIndex++) {
            // the following is pretty much a copy-paste from the Chart.js library
            var tooltipLabels = [],
                tooltipColors = [],
                medianPosition = (function (index) {

                    // Get all the points at that particular index
                    var Elements = [],
                        dataCollection,
                        xPositions = [],
                        yPositions = [],
                        xMax,
                        yMax,
                        xMin,
                        yMin;
                    Chart.helpers.each(this.datasets, function (dataset) {
                        dataCollection = dataset.points;
                        if (dataCollection[dataIndex] && dataCollection[dataIndex].hasValue()) {
                            Elements.push(dataCollection[dataIndex]);
                        }
                    });

                    Chart.helpers.each(Elements, function (element) {
                        xPositions.push(element.x);
                        yPositions.push(element.y);

                        //Include any colour information about the element
                        tooltipLabels.push(Chart.helpers.template(this.options.multiTooltipTemplate, element));
                        tooltipColors.push({
                            fill: element._saved.fillColor || element.fillColor,
                            stroke: element._saved.strokeColor || element.strokeColor
                        });

                    }, this);

                    yMin = Chart.helpers.min(yPositions);
                    yMax = Chart.helpers.max(yPositions);

                    xMin = Chart.helpers.min(xPositions);
                    xMax = Chart.helpers.max(xPositions);

                    return {
                        x: (xMin > this.chart.width / 2) ? xMin : xMax,
                        y: (yMin + yMax) / 2
                    };
                }).call(this, dataIndex);

            new Chart.MultiTooltip({
                x: medianPosition.x,
                y: medianPosition.y,
                xPadding: this.options.tooltipXPadding,
                yPadding: this.options.tooltipYPadding,
                xOffset: this.options.tooltipXOffset,
                fillColor: this.options.tooltipFillColor,
                textColor: this.options.tooltipFontColor,
                fontFamily: this.options.tooltipFontFamily,
                fontStyle: this.options.tooltipFontStyle,
                fontSize: this.options.tooltipFontSize,
                titleTextColor: this.options.tooltipTitleFontColor,
                titleFontFamily: this.options.tooltipTitleFontFamily,
                titleFontStyle: this.options.tooltipTitleFontStyle,
                titleFontSize: this.options.tooltipTitleFontSize,
                cornerRadius: this.options.tooltipCornerRadius,
                labels: tooltipLabels,
                legendColors: tooltipColors,
                legendColorBackground: this.options.multiTooltipKeyBackground,
                title: this.scale.xLabels[dataIndex],
                chart: this.chart,
                ctx: this.chart.ctx,
                custom: this.options.customTooltips
            }).draw();
        }
    },
    tooltipEvents: [],
    datasetFill: true,
}


Fiddle - https://jsfiddle.net/racqd639/

这篇关于Chart JS:始终在多数据集折线图中显示工具提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆