简体   繁体   English

带有自定义自定义指标的顶点图表半甜甜圈

[英]apex chart semi donut with custom custom indicator

Hello I have the following design That I have to implement.您好,我必须实施以下设计。 I am using apexcharts as a chart library in my application.我在我的应用程序中使用apexcharts作为图表库。

所需设计

I could not find any gauge/indicator related information of apexchart while googling and now quite not sure weather it is possible to implement the chart as required design.我在谷歌搜索时apexchart的任何仪表/指标相关信息,现在非常不确定是否可以根据需要的设计实施图表。

2 important elements on my design我设计中的 2 个重要元素

  1. custom indicator自定义指标
  2. rounded edges of the arc圆弧的圆边

Do you have any idea that could help me here?你有什么想法可以帮助我吗?

Thank You.谢谢你。

 var options = { series: [44, 55, 41, 17, 15], chart: { type: "donut" }, plotOptions: { pie: { startAngle: -90, endAngle: 90, offsetY: 10 } }, grid: { padding: { bottom: -80 } }, responsive: [ { breakpoint: 480, options: { chart: { width: 200 }, legend: { position: "bottom" } } } ] }; var chart = new ApexCharts(document.querySelector("#chart"), options); chart.render();
 <div id="chart"></div> <script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM