在ChartJS中,您如何格式化时间序列上的悬停标签?

问题描述 投票:0回答:1

因此,我想保留'Date'数据类型,并使用Angular 8中的设置,在该设置中,我将使用标记为'Cartesian'的一系列类型来设置多个数据集。我从这里获取文档:https://www.chartjs.org/docs/latest/axes/cartesian/time.html#time-cartesian-axis。但是,如果您可以将“悬停标签”设置为其他值,则我可能无法正确阅读或丢失。如果我不及时处理,它会炸毁,我可以在代码中设置带有回调的X轴,如下所示:

    const dashInput = this.getDashboardInput();
    const daysDifference = (+dashInput.endDate.getTime() - +dashInput.startDate.getTime()) / 1000 / 60 / 60 / 24;

    if (daysDifference >= 150 ) {
      this.enrollmentsAndCompletionsChartInUI.options.scales.xAxes[0].time.unit = 'month';
      this.enrollmentsAndCompletionsChartInUI.options.scales.xAxes[0].time.displayFormats.month = 'MM/YY';
    } else if (daysDifference >= 60) {
      this.enrollmentsAndCompletionsChartInUI.options.scales.xAxes[0].time.unit = 'week';
      this.enrollmentsAndCompletionsChartInUI.options.scales.xAxes[0].time.displayFormats.week = 'MM/DD/YY';
    } else {
      this.enrollmentsAndCompletionsChartInUI.options.scales.xAxes[0].time.unit = 'day';
      this.enrollmentsAndCompletionsChartInUI.options.scales.xAxes[0].time.displayFormats.day = 'MM/DD/YY';
    }

但是我没有看到您如何设置此悬停框属性。任何帮助将不胜感激,因为我可能刚刚错过了文档中的一些简单内容。

当前,ChartJs标尺的配置设置是这样设置的。但是,该组件会覆盖上述设置。

scales: {
      xAxes: [{
        id: 'time axis',
        type: 'time',
        time: { 
          unit: 'day', 
          displayFormats: {
            day: 'MM/DD/YY'
          }
        }
      }],
      yAxes: [{
        scaleLabel: {
          display: true,
          labelString: 'Enrollments'
        },
        ticks: {
          beginAtZero: true,
          min: 0
        }
      }]
    }

enter image description here

为了清楚,我希望将鼠标悬停在XAxis格式上,例如08/05/19

javascript angular typescript chart.js
1个回答
0
投票

我发现了这种方法:

外部(自定义)工具提示自定义工具提示使您可以进入工具提示呈现过程,以便可以以自己的自定义方式呈现工具提示。通常,这用于创建HTML工具提示,而不是oncanvas。您可以在全局或图表配置中启用自定义工具提示,如下所示:

var myPieChart =新图表(ctx,{类型:“派”,数据:数据,选项:{工具提示:{//禁用画布工具提示已启用:false,

        custom: function(tooltipModel) {
            // Tooltip Element
            var tooltipEl = document.getElementById('chartjs-tooltip');

            // Create element on first render
            if (!tooltipEl) {
                tooltipEl = document.createElement('div');
                tooltipEl.id = 'chartjs-tooltip';
                tooltipEl.innerHTML = '<table></table>';
                document.body.appendChild(tooltipEl);
            }

            // Hide if no tooltip
            if (tooltipModel.opacity === 0) {
                tooltipEl.style.opacity = 0;
                return;
            }

            // Set caret Position
            tooltipEl.classList.remove('above', 'below', 'no-transform');
            if (tooltipModel.yAlign) {
                tooltipEl.classList.add(tooltipModel.yAlign);
            } else {
                tooltipEl.classList.add('no-transform');
            }

            function getBody(bodyItem) {
                return bodyItem.lines;
            }

            // Set Text
            if (tooltipModel.body) {
                var titleLines = tooltipModel.title || [];
                var bodyLines = tooltipModel.body.map(getBody);

                var innerHtml = '<thead>';

                titleLines.forEach(function(title) {
                    innerHtml += '<tr><th>' + title + '</th></tr>';
                });
                innerHtml += '</thead><tbody>';

                bodyLines.forEach(function(body, i) {
                    var colors = tooltipModel.labelColors[i];
                    var style = 'background:' + colors.backgroundColor;
                    style += '; border-color:' + colors.borderColor;
                    style += '; border-width: 2px';
                    var span = '<span style="' + style + '"></span>';
                    innerHtml += '<tr><td>' + span + body + '</td></tr>';
                });
                innerHtml += '</tbody>';

                var tableRoot = tooltipEl.querySelector('table');
                tableRoot.innerHTML = innerHtml;
            }

            // `this` will be the overall tooltip
            var position = this._chart.canvas.getBoundingClientRect();

            // Display, position, and set styles for font
            tooltipEl.style.opacity = 1;
            tooltipEl.style.position = 'absolute';
            tooltipEl.style.left = position.left + window.pageXOffset + tooltipModel.caretX + 'px';
            tooltipEl.style.top = position.top + window.pageYOffset + tooltipModel.caretY + 'px';
            tooltipEl.style.fontFamily = tooltipModel._bodyFontFamily;
            tooltipEl.style.fontSize = tooltipModel.bodyFontSize + 'px';
            tooltipEl.style.fontStyle = tooltipModel._bodyFontStyle;
            tooltipEl.style.padding = tooltipModel.yPadding + 'px ' + tooltipModel.xPadding + 'px';
            tooltipEl.style.pointerEvents = 'none';
        }
    }
}

});

请参阅此处

https://www.chartjs.org/docs/latest/configuration/tooltip.html#tooltip-configuration

© www.soinside.com 2019 - 2024. All rights reserved.