带有 chart.js 的水平堆积条形图

Horizontal stacked bar chart with chart.js(带有 chart.js 的水平堆积条形图)
本文介绍了带有 chart.js 的水平堆积条形图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试找出是否有任何插件可以使用 chart.js 制作水平堆积条形图

I am trying to find out if there is any plugin to do a horizontal stacked bar chart with chart.js

我看到有用于堆叠条形图和水平条形图的插件,但我没有找到将两者结合在一起的插件.

I see there are plugins for stacked bar charts and also for horizontal bar charts, but I didn't find one that combines both.

https://github.com/Regaddi/Chart.StackedBar.js

有人知道如何实现吗?

推荐答案

我知道这已经几个月了,但我想我会为后代添加我的答案.

I know this is a few months old, but I thought I'd add my answer for future generations.

我可以不用额外的插件.如果在 scales 下将 xAxes 和 yAxes 设置为stacked:true,则可以创建一个堆叠的水平图.

I was able to do without extra plugins. If you set the xAxes and yAxes to stacked:true under scales, you can create a stacked horizontal graph.

scales: {
     xAxes: [{
          stacked: true,
     }],
     yAxes: [{
          stacked: true
     }]
}

这是一个快速的笔来展示我是如何做到的.http://codepen.io/jamiecalder/pen/NrROeB

Here's a quick pen to show how I did it. http://codepen.io/jamiecalder/pen/NrROeB

奖励:包括在图表上显示值的代码

Bonus: Includes code to show the values on the graph

这篇关于带有 chart.js 的水平堆积条形图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Update another component when Formik form changes(当Formik表单更改时更新另一个组件)
Formik validation isSubmitting / isValidating not getting set to true(Formik验证正在提交/isValiating未设置为True)
React Validation Max Range Using Formik(使用Formik的Reaction验证最大范围)
Validation using Yup to check string or number length(使用YUP检查字符串或数字长度的验证)
Updating initialValues prop on Formik Form does not update input value(更新Formik表单上的初始值属性不会更新输入值)
password validation with yup and formik(使用YUP和Formick进行密码验证)