博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
图形化
阅读量:5213 次
发布时间:2019-06-14

本文共 1500 字,大约阅读时间需要 5 分钟。

http://echarts.baidu.com/echarts2/doc/example.html

 

circle-progress  进度条

<!DOCTYPE html>

<html>
<head>
<title></title>
<script type="text/javascript" src="jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="echarts.min.js"></script>
</head>
<body>
<div id="index-right-report" style="width: 100%;height:449px;"></div>
</body>
</html>

<script type="text/javascript">

$(function(){
var myChart = echarts.init(document.getElementById('index-right-report'));
option = {
title : {
text: '未来一周气温变化',
subtext: '纯属虚构'
},
tooltip : {
trigger: 'axis'
},
legend: {
data:['最高气温','最低气温']
},
toolbox: {
show : true,
feature : {
mark : {show: true},
dataView : {show: true, readOnly: false},
magicType : {show: true, type: ['line', 'bar']},
restore : {show: true},
saveAsImage : {show: true}
}
},
calculable : true,
xAxis : [
{
type : 'category',
boundaryGap : false,
data : ['周一','周二','周三','周四','周五','周六','周日']
}
],
yAxis : [
{
type : 'value',
axisLabel : {
formatter: '{value} °C'
}
}
],
series : [
{
name:'最高气温',
type:'line',
data:[11, 11, 15, 13, 12, 13, 10],
markPoint : {
data : [
{type : 'max', name: '最大值'},
{type : 'min', name: '最小值'}
]
},
markLine : {
data : [
{type : 'average', name: '平均值'}
]
}
},
{
name:'最低气温',
type:'line',
data:[1, -2, 2, 5, 3, 2, 0],
markPoint : {
data : [
{name : '周最低', value : -2, xAxis: 1, yAxis: -1.5}
]
},
markLine : {
data : [
{type : 'average', name : '平均值'}
]
}
}
]
};
myChart.setOption(option);
})
</script>

转载于:https://www.cnblogs.com/finnlee/p/6207983.html

你可能感兴趣的文章
[kd-tree] Luogu P4148 简单题
查看>>
ASP。net中如何在一个按钮click事件中调用另一个按钮的click事件
查看>>
系统调用、API之间的关系(图)
查看>>
浏览器兼容性问题
查看>>
2. Add Two Numbers
查看>>
ORA-39070
查看>>
冲刺博客四
查看>>
nginx实现跨域访问
查看>>
多平台下Modbus通信协议库的设计(一)
查看>>
驱动初步学习
查看>>
linux 实时查看Tomcat日志信息
查看>>
不显示bootstrap模态框,只有背景变遮住
查看>>
vue 对数组置顶操作
查看>>
HDU - 3336 Count the string
查看>>
CodeForces - 940E Cashback
查看>>
Apache Rewrite的配置
查看>>
NOIP模拟题 管道
查看>>
Unix-IO-同步,异步,阻塞,非阻塞-笔记篇
查看>>
【uoj#180】[UR #12]实验室外的攻防战 结论题+树状数组
查看>>
dos与unix文件格式之间的转换
查看>>