Chart.js设置甜甜圈背景色?

时间:2013-11-07 11:29:03

标签: javascript canvas chart.js

我正在使用Chart.js(documentation),但我似乎无法为甜甜圈路径设置背景颜色。它甚至没有在文档中提到过。

我想要实现的目标:

enter image description here

当前代码:

var meterInvoicesData = [
    {
        value: 75,
        color: '#22d319'
    },
    {
        value: 25,     // rest
        color: 'transparent'  // invisible (setting this as background color will animate it too)
    }
];

var meterOptions =
{
    percentageInnerCutout : 80,
    animationEasing : 'easeInQuint'
};

var meterInvoices = new Chart(document.getElementById('meterInvoices').getContext('2d')).Doughnut(meterInvoicesData,meterOptions);

更新:我目前通过使用值为100的重复甜甜圈(第二个画布),没有动画和我想要的(背景)颜色来解决它,以及在第一个位置下方定位它。

然而,这是一个讨厌的伎俩,效率很低,所以我仍然希望得到正确的答案。

4 个答案:

答案 0 :(得分:11)

我想发布一个最新的解决方案,对我有用,使用引入plugins的v2.1.0。

没有值的图表显示背景vs图表,其值覆盖背景,只有主图表会动画,背景只是一个简单的弧:

Chart with no value displaying a background Chart with value covering the background

我首先按照their docs注册了一个插件:

var radiusBackground = function() {
  var self = this;

  self.draw = function(chartInstance) {
    if(chartInstance.options.radiusBackground) {
      var x = chartInstance.chart.canvas.clientWidth / 2,
          y = chartInstance.chart.canvas.clientHeight / 2,
          ctx = chartInstance.chart.ctx;

      ctx.beginPath();
      ctx.arc(x, y, chartInstance.outerRadius - (chartInstance.radiusLength / 2), 0, 2 * Math.PI);
      ctx.lineWidth = chartInstance.radiusLength;
      ctx.strokeStyle = chartInstance.options.radiusBackground.color || '#d1d1d1';
      ctx.stroke();
    }
  };

  // see http://www.chartjs.org/docs/#advanced-usage-creating-plugins for plugin interface
  return {
    beforeDatasetsDraw: self.draw,
    onResize: self.draw
  }
};

// Register with Chart JS
Chart.plugins.register(new radiusBackground());

单例语法只是为了减少重复并对多个插件事件使用相同的draw方法。

然后我使用了我的新注册插件:

var chartElement = document.getElementById('doughnut-chart');

var chart = new Chart(chartElement, {
  type: 'doughnut',
  options: {
    // Here is where we enable the 'radiusBackground'
    radiusBackground: {
      color: '#d1d1d1' // Set your color per instance if you like
    },
    cutoutPercentage: 90,
    title: {
      display: false,
    },
    legend: {
      display: false,
    },
  },
  data: {
    labels: ["Type 1", "Type 2", "Type 3"],
    datasets: [{
      data: [2, 5, 1],
      backgroundColor: ["#a3c7c9","#889d9e","#647678"],
      borderWidth: 0,
      hoverBackgroundColor: ["#96b7b9","#718283","#5c6b6d"]
    }]
  }
});

JS Fiddle Here

答案 1 :(得分:1)

我通过使用值为100的复制甜甜圈(第二个画布),没有动画和我想要的背景颜色来解决它,并将其定位在第一个下面。

然而,这是一个讨厌的伎俩,效率很低,所以我仍然希望得到正确的答案。

答案 2 :(得分:1)

我使用了@Jonlunsford 的代码,但是当我将 ChartJS 升级到 3.x 时它不起作用。

根据Migration Guide,它说

Chart.innerRadius now lives on doughnut, pie, and polarArea controllers

所以我把代码改成:

import { Chart, DoughnutController } from 'chart.js'

type DoughnutChartBackgroundPluginOptions = {
  enabled: boolean
  color: string
}

function handler(chart: Chart<'doughnut'>, args, options: DoughnutChartBackgroundPluginOptions) {
  const { ctx, width, height } = chart

  const { innerRadius } = chart.getDatasetMeta(chart.data.datasets.length - 1).controller as DoughnutController
  const { outerRadius } = chart.getDatasetMeta(0).controller as DoughnutController
  const radiusLength = outerRadius - innerRadius

  if (options.enabled) {
    const x = width / 2,
      y = height / 2

    ctx.beginPath()
    ctx.arc(x, y, outerRadius - radiusLength / 2, 0, 2 * Math.PI)
    ctx.lineWidth = radiusLength
    ctx.strokeStyle = options.color
    ctx.stroke()
  }
}

export default {
  id: 'doughnutChartBackground',
  beforeDatasetsDraw: handler,
}

然后,在创建图表时,您可以使用以下选项:

  ...
  plugins: {
    legend: {
      display: false,
    },
    doughnutBackground: {
      enabled: true,
      color: '#E4E6E6',
    },
    ...
  },

答案 3 :(得分:0)

可能在canvas元素中你无法做到这一点。 我会在画布之外放置一个绝对定位的元素。这是一个例子:

.fakeCircle {
    position: absolute;
    z-index: 0;
    border-radius: 90px;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    background-color: #dadce8;
    width: 50px;
    height: 50px;
    top: 12px;
    left: 12px;
}
.fakeCircle:after {
    position: absolute;
    z-index: 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    background-color: #fff;
    width: 34px;
    height: 34px;
    content: "";
}