G2
G2
G6
F2
L7
墨者学院
关于 G2
图表示例
API 文档
使用教程
English
折线图
基础折线图
双折线图
多折线图
其他折线图
条形图
分组条形图
堆叠条形图
基础条形图
柱状图
基础柱状图
分组柱状图
堆叠柱状图
直方图
饼图
环图
玫瑰图
基础饼图
嵌套饼图
点图
散点图
面积图
基础面积图
堆叠面积图
区间面积图
箱形图
箱型图
烛形图
烛形图
热力图
热力图
仪表盘
仪表盘
漏斗图
漏斗图
地图
地图
雷达图
雷达图
分面
分面
关系图
关系图
其他图表
其他
迷你图
组件使用
组件
堆叠条形图
谁住在首都?
该图展示了8个国家中,首都、城市和农村地区人口在全国总人口中的占比。冰岛由于国土面积狭小,人口基数也小,相对来说首都人口占比较高。而中国国土面积大,人口基数也大,相对来说首都人口占比较低。
源码
复制成功
复制失败
全屏
复制
运行
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,height=device-height"> <title>谁住在首都?</title> <style>::-webkit-scrollbar{display:none;}html,body{overflow:hidden;height:100%;margin:0;}</style> </head> <body> <div id="mountNode"></div> <script>/*Fixing iframe window.innerHeight 0 issue in Safari*/document.body.clientHeight;</script> <script src="https://gw.alipayobjects.com/os/antv/pkg/_antv.g2-3.5.1/dist/g2.min.js"></script> <script src="https://gw.alipayobjects.com/os/antv/pkg/_antv.data-set-0.10.1/dist/data-set.min.js"></script> <script src="https://gw.alipayobjects.com/os/antv/assets/lib/jquery-3.2.1.min.js"></script> <script> var data = [{ city: '中国(北京)', type: '首都人口', value: 0.01 }, { city: '中国(北京)', type: '城市人口', value: 0.53 }, { city: '中国(北京)', type: '农村人口', value: 0.46 }, { city: '美国(华盛顿)', type: '首都人口', value: 0.01 }, { city: '美国(华盛顿)', type: '城市人口', value: 0.8 }, { city: '美国(华盛顿)', type: '农村人口', value: 0.19 }, { city: '印度(德里)', type: '首都人口', value: 0.02 }, { city: '印度(德里)', type: '城市人口', value: 0.3 }, { city: '印度(德里)', type: '农村人口', value: 0.68 }, { city: '俄罗斯(莫斯科)', type: '首都人口', value: 0.08 }, { city: '俄罗斯(莫斯科)', type: '城市人口', value: 0.66 }, { city: '俄罗斯(莫斯科)', type: '农村人口', value: 0.26 }, { city: '法国(巴黎)', type: '首都人口', value: 0.16 }, { city: '法国(巴黎)', type: '城市人口', value: 0.63 }, { city: '法国(巴黎)', type: '农村人口', value: 0.21 }, { city: '韩国(首尔)', type: '首都人口', value: 0.19 }, { city: '韩国(首尔)', type: '城市人口', value: 0.63 }, { city: '韩国(首尔)', type: '农村人口', value: 0.18 }, { city: '丹麦(哥本哈根)', type: '首都人口', value: 0.22 }, { city: '丹麦(哥本哈根)', type: '城市人口', value: 0.65 }, { city: '丹麦(哥本哈根)', type: '农村人口', value: 0.13 }, { city: '冰岛(雷克雅未克)', type: '首都人口', value: 0.56 }, { city: '冰岛(雷克雅未克)', type: '城市人口', value: 0.38 }, { city: '冰岛(雷克雅未克)', type: '农村人口', value: 0.06 }]; var chart = new G2.Chart({ container: 'mountNode', forceFit: true, height: window.innerHeight, padding: [20, 20, 50, 140] }); chart.source(data, { value: { max: 1.0, min: 0.0, nice: false, alias: '占比(%)' } }); chart.axis('city', { label: { textStyle: { fill: '#595959', fontSize: 12 } }, tickLine: { alignWithLabel: false, length: 0 }, line: { lineWidth: 0 } }); chart.axis('value', { label: null, title: { offset: 30, textStyle: { fontSize: 14, fontWeight: 300 } }, grid: { lineStyle: { lineWidth: 0 } } }); chart.legend({ position: 'top-center' }); chart.coord().transpose(); chart.intervalStack().position('city*value').color('type*city', function(type, city) { var color = void 0; if (type === '首都人口') color = '#1890ff'; if (type === '城市人口') color = '#ced4d9'; if (type === '农村人口') color = '#f0f2f3'; if (type === '首都人口' && city === '中国(北京)') color = '#f5222d'; return color; }).size(26).opacity(1).label('value*type', function(val, t) { var color = t === "首都人口" ? 'white' : '#47494b'; if (val < 0.05) { return false; } return { position: 'middle', offset: 0, textStyle: { fontSize: 12, fill: color, shadowBlur: 2, shadowColor: 'rgba(0, 0, 0, .45)' } }; }); chart.render(); </script> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,height=device-height"> <title>谁住在首都?</title> <style>::-webkit-scrollbar{display:none;}html,body{overflow:hidden;height:100%;margin:0;}</style> </head> <body style="background: #1f1f1f;"> <div id="mountNode"></div> <script>/*Fixing iframe window.innerHeight 0 issue in Safari*/document.body.clientHeight;</script> <script src="https://gw.alipayobjects.com/os/antv/pkg/_antv.g2-3.5.1/dist/g2.min.js"></script> <script src="https://gw.alipayobjects.com/os/antv/pkg/_antv.data-set-0.10.1/dist/data-set.min.js"></script> <script src="https://gw.alipayobjects.com/os/antv/assets/lib/jquery-3.2.1.min.js"></script> <script>G2.Global.setTheme('dark');</script> <script> var data = [{ city: '中国(北京)', type: '首都人口', value: 0.01 }, { city: '中国(北京)', type: '城市人口', value: 0.53 }, { city: '中国(北京)', type: '农村人口', value: 0.46 }, { city: '美国(华盛顿)', type: '首都人口', value: 0.01 }, { city: '美国(华盛顿)', type: '城市人口', value: 0.8 }, { city: '美国(华盛顿)', type: '农村人口', value: 0.19 }, { city: '印度(德里)', type: '首都人口', value: 0.02 }, { city: '印度(德里)', type: '城市人口', value: 0.3 }, { city: '印度(德里)', type: '农村人口', value: 0.68 }, { city: '俄罗斯(莫斯科)', type: '首都人口', value: 0.08 }, { city: '俄罗斯(莫斯科)', type: '城市人口', value: 0.66 }, { city: '俄罗斯(莫斯科)', type: '农村人口', value: 0.26 }, { city: '法国(巴黎)', type: '首都人口', value: 0.16 }, { city: '法国(巴黎)', type: '城市人口', value: 0.63 }, { city: '法国(巴黎)', type: '农村人口', value: 0.21 }, { city: '韩国(首尔)', type: '首都人口', value: 0.19 }, { city: '韩国(首尔)', type: '城市人口', value: 0.63 }, { city: '韩国(首尔)', type: '农村人口', value: 0.18 }, { city: '丹麦(哥本哈根)', type: '首都人口', value: 0.22 }, { city: '丹麦(哥本哈根)', type: '城市人口', value: 0.65 }, { city: '丹麦(哥本哈根)', type: '农村人口', value: 0.13 }, { city: '冰岛(雷克雅未克)', type: '首都人口', value: 0.56 }, { city: '冰岛(雷克雅未克)', type: '城市人口', value: 0.38 }, { city: '冰岛(雷克雅未克)', type: '农村人口', value: 0.06 }]; var chart = new G2.Chart({ container: 'mountNode', forceFit: true, height: window.innerHeight, padding: [20, 20, 50, 140] }); chart.source(data, { value: { max: 1.0, min: 0.0, nice: false, alias: '占比(%)' } }); chart.axis('city', { label: { textStyle: { fill: '#595959', fontSize: 12 } }, tickLine: { alignWithLabel: false, length: 0 }, line: { lineWidth: 0 } }); chart.axis('value', { label: null, title: { offset: 30, textStyle: { fontSize: 14, fontWeight: 300 } }, grid: { lineStyle: { lineWidth: 0 } } }); chart.legend({ position: 'top-center' }); chart.coord().transpose(); chart.intervalStack().position('city*value').color('type*city', function(type, city) { var color = void 0; if (type === '首都人口') color = '#1890ff'; if (type === '城市人口') color = '#ced4d9'; if (type === '农村人口') color = '#f0f2f3'; if (type === '首都人口' && city === '中国(北京)') color = '#f5222d'; return color; }).size(26).opacity(1).label('value*type', function(val, t) { var color = t === "首都人口" ? 'white' : '#47494b'; if (val < 0.05) { return false; } return { position: 'middle', offset: 0, textStyle: { fontSize: 12, fill: color, shadowBlur: 2, shadowColor: 'rgba(0, 0, 0, .45)' } }; }); chart.render(); </script> </body> </html>
图表简介
该图展示了8个国家中,首都、城市和农村地区人口在全国总人口中的占比。冰岛由于国土面积狭小,人口基数也小,相对来说首都人口占比较高。而中国国土面积大,人口基数也大,相对来说首都人口占比较低。
了解更多
图表用法
数据来源:demo数据
相关链接
BizCharts
Viser