我是靠谱客的博主 沉静水杯,最近开发中收集的这篇文章主要介绍饼状图(pie chart)示例代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

饼状图

  • 示例
  • 代码
    • HTML
    • CSS
    • JS

更多有趣示例 尽在 知屋安砖社区

示例

在这里插入图片描述

代码

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js">
<script src="https://code.highcharts.com/modules/accessibility.js"></script></script>

<div id="container" style="min-width: 310px; height: 400px; max-width: 600px; margin: 0 auto"></div>

CSS

#container {
	min-width: 310px;
	max-width: 800px;
	height: 400px;
	margin: 0 auto
}

JS

Highcharts.setOptions({
  colors: ['#C0C0C0', '#808080', '#0C090A']
});  
Highcharts.chart('container', {
    chart: {
      plotBackgroundColor: null,
      plotBorderWidth: null,
      plotShadow: false,
      type: 'pie'
    },
    title: {
      text: 'Air Composition'
    },
    tooltip: {
      pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
    },
    plotOptions: {
      pie: {
        allowPointSelect: true,
        cursor: 'pointer',
        dataLabels: {
          enabled: false
        },
        showInLegend: true
      }
    },
    series: [{
      name: 'Composition',
      colorByPoint: true,
      data: [{
        name: 'Nitrogen',
        //color: '#01BAF2',
        y: 78,
      }, {
        name: 'Oxygen',
        //color: '#71BF45',
        y: 20.9,
        sliced: true,
        selected: true
      }, {
        name: 'Other gases',
        //color: '#FAA74B',
        y: 1.1
      }]
    }]
  });

最后

以上就是沉静水杯为你收集整理的饼状图(pie chart)示例代码的全部内容,希望文章能够帮你解决饼状图(pie chart)示例代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部