企業快速開發平臺Spring Cloud+Spring Boot+Mybatis之Highcharts 基本餅圖
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 企業快速開發平臺Spring Cloud+Spring Boot+Mybatis+ElementUICloudSpring BootMyBatisUI
- 五、企業快速開發平臺Spring Cloud+Spring Boot+Mybatis+ElementUI之Lua 變數CloudSpring BootMyBatisUI變數
- 十六、企業快速開發平臺Spring Cloud+Spring Boot+Mybatis+ElementUI之Lua 檔案 I/OCloudSpring BootMyBatisUI
- (2)java Spring Cloud+Spring boot企業快速開發架構之Spring Cloud版本介紹JavaCloudSpring Boot架構
- BeX5企業快速開發平臺-前端快速開發框架前端框架
- Highcharts繪製餅圖
- 提高企業開發效率的優質工具:快速開發平臺
- 低程式碼開發平臺,快速開發企業級系統
- 快速構建企業級應用的開發平臺
- 中小企業需要統一的快速開發平臺嗎?
- 【highcharts應用-雙餅圖】
- 快速開發平臺對中小企業的發展有何助力
- 快速開發平臺--企業資訊化的絕佳解決方案
- Spring Cloud+Spring Boot+Mybatis 電子招標採購系統CloudSpring BootMyBatis
- Highcharts結合後臺實現圖餅資料顯示
- java版工程管理系統之Spring Cloud+Spring Boot+Mybatis實現工程管理系統JavaCloudSpring BootMyBatis
- Web快速開發平臺個人之淺見Web
- LeaRun低程式碼平臺 助力中小企業快速開發MES系統
- 企業分散式微服務雲架構快速開發平臺原始碼分散式微服務架構原始碼
- java Spring Cloud企業快速開發架構之SpringCloud-Spring Cloud EurekaJavaSpringCloud架構GC
- LeaRun快速開發平臺:企業供應鏈管理系統解決方案
- LeaRun低程式碼開發平臺 賦能企業快速落地BI大屏
- Java 版 Spring Cloud+Spring Boot+Mybatis 電子招標採購系統JavaCloudSpring BootMyBatis
- Spring Cloud+Spring Boot+Mybatis 電子招標採購系統原始碼CloudSpring BootMyBatis原始碼
- java版Spring Cloud+Spring Boot+Mybatis實現工程管理系統原始碼JavaCloudSpring BootMyBatis原始碼
- 工程管理系統之java版Spring Cloud+Spring Boot+Mybatis實現工程管理系統原始碼JavaCloudSpring BootMyBatis原始碼
- JAVA漢諾塔遞迴 之SpringCloud企業分散式微服務雲架構快速開發平臺Java遞迴SpringGCCloud分散式微服務架構
- 度量快速開發平臺——快速入門
- SpringCloud企業分散式微服務雲架構快速開發平臺原始碼SpringGCCloud分散式微服務架構原始碼
- LR軟體開發平臺:快速建立企業協同辦公解決方案
- 利用軟體開發平臺快速建立企業協同辦公解決方案
- 企業資訊化管理系統採用怎樣的快速開發平臺好?
- LR低程式碼快速開發平臺 高效調整企業組織架構架構
- Highcharts+PHP+Mysql生成餅狀統計圖PHPMySql
- Web快速開發平臺,基於二次開發平臺Web
- java Spring Cloud企業快速開發架構之Spring Boot Starter的介紹及使用JavaCloud架構Spring Boot
- LeaRun快速開發平臺,快速開發.net/java專案Java
- 企業快速開發平臺Spring Cloud實現前後端分離之CAS SSO單點登入服務端環境搭建SpringCloud後端服務端