gpt4 book ai didi

jquery - 更改 morris.js 中默认突出显示的段

转载 作者:行者123 更新时间:2023-12-01 01:06:23 24 4
gpt4 key购买 nike

我正在使用 morris.js 制作 donut chart 表。除了以下要求之外,我已经完成了所有要求。

加载页面时默认突出显示一个片段。我如何定位该分割市场并突出显示其他分割市场?

最佳答案

您可以使用 Morris documentation 中所述的 select 方法。 :

Note: by default, the segment with the greatest value will be initially selected. You can change the selection using the select(index) method on the object returned by Morris.Donut.

尝试此代码片段以查看工作示例:

var morrisDonut = Morris.Donut({
element: 'donut',
data: [
{label: "Download Sales", value: 12},
{label: "In-Store Sales", value: 30},
{label: "Mail-Order Sales", value: 20}
],
resize: true
});

morrisDonut.select(2);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js"></script>
<link href="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css" rel="stylesheet"/>

<div id="donut"></div>

关于jquery - 更改 morris.js 中默认突出显示的段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40586393/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com