Highcharts20151130
$(function () {
$('#container').highcharts({
chart: {
type: 'spline' // 图的类型
},
title: {
text: null
},
subtitle: {
text: null
},
xAxis: {
labels: {
enabled: false
},
title: {
text: null
},
lineWidth: 0, // x轴线
tickLength: 0 // 刻度
},
yAxis: {
labels: {
enabled: false
},
title: {
text: null
},
gridLineWidth: 0 // 网格线的宽度,当设置为 0 时,即为不显示网格线
},
exporting: { // 导出功能模块
enabled: false
},
plotOptions: {
spline: {
lineWidth: 2,
states: {
hover: {
enabled: false
}
},
marker: {
enabled: false
}
}
},
tooltip: {
enabled: false
},
legend: {
enabled: false
},
series: [{
name: 'test',
data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
}],
credits: {
enabled: false
}
});
});
Highcharts20151130的更多相关文章
随机推荐
- 约束的DEFERRABLE, NOT DEFERRABLE, INITIALLY IMMEDIATE 和 INITIALLY DEFERRED
[ CONSTRAINT constraint_name ] { NOT NULL | NULL | CHECK ( expression ) [ NO INHERIT ] | DEFAU ...
- 详解Google-ProtoBuf中结构化数据的编码
本文的主要内容是google protobuf中序列化数据时用到的编码规则,但是,介绍具体的编码规则之前,我觉得有必要先简单介绍一下google protobuf.因此,本文首先会介绍一些google ...
- JQuery 知识点
1:animate 动画效果 $(function () { $(".sidebar-nav a").mouseover(function () { $(this).animate ...
- 然爸读书笔记(2014-10)----Bootsrap用户手册
本来其实这方面的知识,可以直接在网站上看,但是自己是web前端的小白.基本不懂.所以,还是买一本书来看,更好些.体现出我对前端的重视. Bootstrap是快速开发Web应用程序的前端工具包.它是一个 ...
- PHP发送微信模版消息
public function payResult($params) { global $_GPC, $_W; $weid = $this->_weid; $order = pdo_fetch( ...
- zepto点击事件兼容pc和mobile
判断pc还是mobile,重写click事件 var CLICK='click'; (function browserRedirect() { var sUserAgent = navigator.u ...
- hibernate多对一单向外键
hibernate多对一单向外键: 描述:
- smarty 时间格式化date_format
代码如下:$smarty = new Smarty; $smarty->assign('yesterday', strtotime('-1 day')); $smarty->display ...
- httpclient 302 重定向
主要是由于页面可能不是通过 request.sendRedirect跳转的,可能通过js location跳转的.所以需要拿跳转后的 地址,重新发送请求...如下所示 if (status == H ...
- 【图说】Eclipse与Unity 3D协同工作
原地址:http://blog.csdn.net/h570768995/article/details/9355313 Eclipse开发过程中总会碰到很多的难题,如何利用好工具帮助我们更快捷的开发也 ...