企業快速開發平臺Spring Cloud+Spring Boot+Mybatis之​Highcharts 基本餅圖​

JIAN2發表於2022-04-18

 Highcharts 基本餅圖

 

以下例項演示了基本餅圖。

我們在前面的章節已經瞭解了 Highcharts 基本配置語法。接下來讓我們來看下其他的配置。

需要框架原始碼的朋友可以看我個人簡介聯絡我。(@獲取原始碼+wx: haiwabbc2)


 

配置

series 配置

設定 series 的 type 屬性為 pie ,series.type 描述了資料列型別。預設值為 "line"。

var series = {   type: 'pie'};

例項

檔名:highcharts_pie_basic.htm

<html><head><meta charset="UTF-8" /><title>Highcharts 教程 | 菜鳥教程(runoob.com)</title><script src="(document).ready(function() {  
   var chart = {       plotBackgroundColor: null,       plotBorderWidth: null,       plotShadow: false
   };   var title = {      text: '2014 年各瀏覽器市場佔有比例'   
   };      
   var tooltip = {      pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
   };   var plotOptions = {      pie: {         allowPointSelect: true,         cursor: 'pointer',         dataLabels: {            enabled: true,            format: '<b>{point.name}%</b>: {point.percentage:.1f} %',            style: {               color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
            }
         }
      }
   };   var series= [{      type: 'pie',      name: 'Browser share',      data: [
         ['Firefox',   45.0],
         ['IE',       26.8],
         {            name: 'Chrome',            y: 12.8,            sliced: true,            selected: true
         },
         ['Safari',    8.5],
         ['Opera',     6.2],
         ['Others',   0.7]
      ]
   }];     
      
   var json = {};   
   json.chart = chart; 
   json.title = title;     
   json.tooltip = tooltip;  
   json.series = series;
   json.plotOptions = plotOptions;
   $('#container').highcharts(json);  
});</script></body></html>

 

以上例項輸出結果為:


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70006413/viewspace-2887526/,如需轉載,請註明出處,否則將追究法律責任。

相關文章