# Morris.js - pretty time-series line graphs
[![Build Status](https://secure.travis-ci.org/morrisjs/morris.js.png?branch=master)](http://travis-ci.org/morrisjs/morris.js)
Morris.js is the library that powers the graphs on http://howmanyleft.co.uk/.
It's a very simple API for drawing line, bar, area and donut charts.
Cheers!
\- Olly (olly@oesmith.co.uk)
## Contributors wanted
I'm unfortunately not able to actively support Morris.js any more. I keep an eye
on the issues, but I rarely have the time to fix bugs or review pull requests.
If you're interested in actively contributing to Morris.js, please contact me on
the email address above.
## Requirements
- [jQuery](http://jquery.com/) (>= 1.7 recommended, but it'll probably work with
older versions)
- [Raphael.js](http://raphaeljs.com/) (>= 2.0)
## Usage
See [the website](http://morrisjs.github.com/morris.js/).
## Development
Very daring.
Fork, hack, possibly even add some tests, then send a pull request :)
Remember that Morris.js is a coffeescript project. Please make your changes in
the `.coffee` files, not in the compiled javascript files in the root directory
of the project.
### Developer quick-start
You'll need [node.js](https://nodejs.org). I recommend using
[nvm](https://github.com/creationix/nvm) for installing node in
development environments.
With node installed, install [grunt](https://github.com/cowboy/grunt) using
`npm install -g grunt-cli`, and then the rest of the test/build dependencies
with `npm install` in the morris.js project folder.
Once you're all set up, you can compile, minify and run the tests using `grunt`.
Note: I'm experimenting with using perceptual diffs to catch rendering
regressions. Due to font rendering differences between platforms, the pdiff
tests currently *only* pass on OS X.
## Changelog
### 0.5.1 - 15th June 2014
- Fix touch event handling.
- Fix stacked=false in bar chart [#275](https://github.com/morrisjs/morris.js/issues/275)
- Configurable vertical segments [#297](https://github.com/morrisjs/morris.js/issues/297)
- Deprecate continuousLine option.
### 0.5.0 - 19th March 2014
- Update grunt dependency [#288](https://github.com/morrisjs/morris.js/issues/228)
- Donut segment color config in data objects [#281](https://github.com/morrisjs/morris.js/issues/281)
- Customisable line widths and point drawing [#272](https://github.com/morrisjs/morris.js/issues/272)
- Bugfix for @options.smooth [#266](https://github.com/morrisjs/morris.js/issues/266)
- Option to disable axes individually [#253](https://github.com/morrisjs/morris.js/issues/253)
- Range selection [#252](https://github.com/morrisjs/morris.js/issues/252)
- Week format for x-labels [#250](https://github.com/morrisjs/morris.js/issues/250)
- Update developer quickstart instructions [#243](https://github.com/morrisjs/morris.js/issues/243)
- Experimenting with perceptual diffs.
- Add original data row to hover callback [#264](https://github.com/morrisjs/morris.js/issues/264)
- setData method for donut charts [#211](https://github.com/morrisjs/morris.js/issues/211)
- Automatic resizing [#111](https://github.com/morrisjs/morris.js/issues/111)
- Fix travis builds [#298](https://github.com/morrisjs/morris.js/issues/298)
- Option for rounded corners on bar charts [#305](https://github.com/morrisjs/morris.js/issues/305)
- Option to set padding for X axis labels [#306](https://github.com/morrisjs/morris.js/issues/306)
- Use local javascript for examples.
- Events on non-time series [#314](https://github.com/morrisjs/morris.js/issues/314)
### 0.4.3 - 12th May 2013
- Fix flickering hover box [#186](https://github.com/morrisjs/morris.js/issues/186)
- xLabelAngle option (diagonal labels!!) [#239](https://github.com/morrisjs/morris.js/issues/239)
- Fix area chart fill bug [#190](https://github.com/morrisjs/morris.js/issues/190)
- Make event handlers chainable
- gridTextFamily and gridTextWeight options
- Fix hovers with setData [#213](https://github.com/morrisjs/morris.js/issues/213)
- Fix hideHover behaviour [#236](https://github.com/morrisjs/morris.js/issues/236)
### 0.4.2 - 14th April 2013
- Fix DST handling [#191](https://github.com/morrisjs/morris.js/issues/191)
- Parse data values from strings in Morris.Donut [#189](https://github.com/morrisjs/morris.js/issues/189)
- Non-cumulative area charts [#199](https://github.com/morrisjs/morris.js/issues/199)
- Round Y-axis labels to significant numbers [#162](https://github.com/morrisjs/morris.js/162)
- Customising default hover content [#179](https://github.com/morrisjs/morris.js/179)
### 0.4.1 - 8th February 2013
- Fix goal and event rendering. [#181](https://github.com/morrisjs/morris.js/issues/181)
- Don't break when empty data is passed to setData [#142](https://github.com/morrisjs/morris.js/issues/142)
- labelColor option for donuts [#159](https://github.com/morrisjs/morris.js/issues/159)
### 0.4.0 - 26th January 2013
- Goals and events [#103](https://github.com/morrisjs/morris.js/issues/103).
- Bower package manager metadata.
- More flexible formatters [#107](https://github.com/morrisjs/morris.js/issues/107).
- Color callbacks.
- Decade intervals for time-axis labels.
- Non-continous line tweaks [#116](https://github.com/morrisjs/morris.js/issues/116).
- Stacked bars [#120](https://github.com/morrisjs/morris.js/issues/120).
- HTML hover [#134](https://github.com/morrisjs/morris.js/issues/134).
- yLabelFormat [#139](https://github.com/morrisjs/morris.js/issues/139).
- Disable axes [#114](https://github.com/morrisjs/morris.js/issues/114).
### 0.3.3 - 1st November 2012
- **Bar charts!** [#101](https://github.com/morrisjs/morris.js/issues/101).
### 0.3.2 - 28th October 2012
- **Area charts!** [#47](https://github.com/morrisjs/morris.js/issues/47).
- Some major refactoring and test suite improvements.
- Set smooth parameter per series [#91](https://github.com/morrisjs/morris.js/issues/91).
- Custom dateFormat for string x-values [#90](https://github.com/morrisjs/morris.js/issues/90).
### 0.3.1 - 13th October 2012
- Add `formatter` option for customising value labels in donuts [#75](https://github.com/morrisjs/morris.js/issues/75).
- Cycle `lineColors` on line charts to avoid running out of colours [#78](https://github.com/morrisjs/morris.js/issues/78).
- Add method to select donut segments. [#79](https://github.com/morrisjs/morris.js/issues/79).
- Don't go negative on yMin when all y values are zero. [#80](https://github.com/morrisjs/morris.js/issues/80).
- Don't sort data when parseTime is false [#83](https://github.com/morrisjs/morris.js/issues/83).
- Customise styling for points. [#87](https://github.com/morrisjs/morris.js/issues/87).
### 0.3.0 - 15th September 2012
- Donut charts!
- Bugfix: ymin/ymax bug [#71](https://github.com/morrisjs/morris.js/issues/71).
- Bugfix: infinite loop when data indicates horizontal line [#66](https://github.com/morrisjs/morris.js/issues/66).
### 0.2.10 - 26th June 2012
- Support for decimal labels on y-axis [#58](https://github.com/morrisjs/morris.js/issues/58).
- Better axis label clipping [#63](https://github.com/morrisjs/morris.js/issues/63).
- Redraw graphs with updated data using `setData` method [#64](https://github.com/morrisjs/morris.js/issues/64).
- Bugfix: series with zero or one non-null values [#65](https://github.com/morrisjs/morris.js/issues/65).
### 0.2.9 - 15th May 2012
- Bugfix: Fix zero-value regression
- Bugfix: Don't modify user-supplied data
### 0.2.8 - 10th May 2012
- Customising x-axis labels with `xLabelFormat` option
- Only use timezones when timezone info is specified
- Fix old IE bugs (mostly in examples!)
- Added `preunits` and `postunits` options
- Better non-continuous series data support
### 0.2.7 - 2nd April 2012
- Added `xLabels` option
- Refactored x-axis labelling
- Better ISO date sup
没有合适的资源?快使用搜索试试~ 我知道了~
毕业设计php校内文件共享系统-qlkrp源码含文档工具包
共1550个文件
js:662个
gif:156个
png:120个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 93 浏览量
2024-08-13
10:31:47
上传
评论
收藏 25.62MB RAR 举报
温馨提示
毕业设计php校内文件共享系统-qlkrp源码含文档工具包 php,数据库mysql,jdk1.8,开发工具用ecplise、myecplise、sts、idea都可以 系统页面 用户信息修改 用户注册 搜索相关资源 用户操作 上传资源 载资源 评论资源 登 录 管理员管理 管理员 管理员操作 会员信息管理 资料管理 系统公告管理 资源分类管理 退出登录 退出系统页面 包含:源码、数据库脚本、论文、环境工具包、相同框架项目的安装教程(在说明文档中)
资源推荐
资源详情
资源评论
收起资源包目录
毕业设计php校内文件共享系统-qlkrp源码含文档工具包 (1550个子文件)
php170校内文件共享系统-视频.avi 3.37MB
ckplayer.cer 118B
morris.grid.coffee 14KB
morris.line.coffee 13KB
line_spec.coffee 8KB
label_series_spec.coffee 7KB
set_data_spec.coffee 7KB
morris.bar.coffee 7KB
morris.donut.coffee 6KB
bar_spec.coffee 4KB
donut_spec.coffee 3KB
hover_spec.coffee 2KB
area_spec.coffee 2KB
parse_time_spec.coffee 2KB
morris.area.coffee 2KB
commas_spec.coffee 1KB
colours.coffee 1KB
auto_grid_lines_spec.coffee 1KB
morris.hover.coffee 1KB
morris.coffee 1KB
pad_spec.coffee 604B
y_label_format_spec.coffee 458B
placeholder.coffee 168B
style.css 770KB
ace.min.css 352KB
bootstrap.css 144KB
bootstrap.css 143KB
ace-rtl.min.css 139KB
bootstrap.css 138KB
bootstrap.min.css 120KB
bootstrap.min.css 118KB
bootstrap.min.css 118KB
bootstrap.min.css 97KB
ace-skins.min.css 74KB
animate.css 71KB
material-design-iconic-font.min.css 69KB
animate.css 68KB
linea-icon.css 49KB
datepicker.css 33KB
font-awesome.css 32KB
font-awesome.min.css 28KB
font-awesome.min.css 27KB
lightgallery.css 26KB
bootstrap-theme.css 26KB
bootstrap-theme.css 26KB
default.css 24KB
bootstrap-theme.min.css 23KB
bootstrap-theme.min.css 23KB
bootstrap-editable.css 21KB
select2.css 18KB
themify-icons.css 16KB
jasny-bootstrap.css 16KB
dataTables.jqueryui.css 16KB
jquery.dataTables.css 15KB
fancy-dropdown.css 15KB
jquery.dataTables_themeroller.css 14KB
dataTables.jqueryui.min.css 14KB
jasny-bootstrap.min.css 14KB
jquery.dataTables.min.css 13KB
ui.jqgrid.css 13KB
simple-line-icons.css 12KB
jquery-ui.min.css 12KB
dropzone.css 11KB
fullcalendar.css 11KB
chosen.css 10KB
filter.css 10KB
pe-icon-7-stroke.css 10KB
build.css 9KB
awesome-bootstrap-checkbox.css 9KB
pe-icon-7-styles.css 7KB
position.css 6KB
build.less.css 5KB
dataTables.bootstrap4.css 5KB
daterangepicker.css 5KB
bootstrap-datetimepicker.css 5KB
jquery.toast.css 5KB
jquery.toast.css 5KB
dataTables.bootstrap.css 5KB
dataTables.bootstrap4.min.css 5KB
jquery.toast.min.css 4KB
colorbox.css 4KB
dataTables.bootstrap.min.css 4KB
diyUpload.css 4KB
datepicker.css 4KB
dataTables.uikit.css 4KB
owl.carousel.css 4KB
datepicker.css 4KB
bootstrap-timepicker.css 3KB
qq.css 3KB
dataTables.uikit.min.css 3KB
sb-admin.css 3KB
dataTables.semanticui.css 3KB
dataTables.foundation.css 3KB
owl.carousel.min.css 3KB
jquery-ui.custom.min.css 3KB
dataTables.semanticui.min.css 3KB
dataTables.material.css 3KB
dataTables.foundation.min.css 3KB
simple.css 2KB
colorpicker.css 2KB
共 1550 条
- 1
- 2
- 3
- 4
- 5
- 6
- 16
资源评论
言宇程序
- 粉丝: 2417
- 资源: 5259
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 三菱电梯门机板设置资料,包含国产进口,门机板接线图
- 基于机器学习的高效VVC帧内编码器分区方案及其复杂度降低研究
- 阿萨大大萨达瓦萨213
- vs2015U3-OSG+3rdParty(编译好的OSG 32和64位库包,内包含依赖的第三方库)
- P2 PEHV,P2构型插电式混合动力汽车ECMS等效燃油消耗最小能量管理策略 模型全部为自己手动搭建,参考可靠文献,非download随便改改糊弄,真正做到看的懂 P2并联PEHV的ECMS能量管
- Java毕业设计-基于SpringBoot的旅游网站项目源码+数据库(高分毕设)
- 网络安全CTF靶场之DVWA
- 基于自适应控制算法的永磁同步电机位置环算法,适用于机器人伺服电机、云台电机控制,伺服大厂验证并商用的模型
- 网络安全CTF靶场之rce-labs
- 永磁同步电机在线参数辨识仿真模型,使用MRAS算法辨识,辨识精度很高 可提供参考lunwen和解答以及电机控制相关资料
- 网络安全CTF靶场之sqli-labs-master
- python实现深度学习的快速准确检测农作物叶子病害项目源码+数据集.zip
- 网络安全CTF靶场之ssti-labs
- 磁耦合谐振无线电能传输系统仿真 通过负载估算和移相控制的发射端控制方案来调整SS SP谐振拓扑的无线供电系统的输出电压和电流 避免了常规无线电能传输系统中发射端与接收端的实时无线通讯,同时,减少了在
- 网络安全CTF靶场之upload-labs-master
- buck DCDC 适合初学者学习,有配套的设计仿真、原理说明pdf,还有参考轮文,视频 tsmc18工艺,正向设计的恒定时间控制(AOT)的dcdc,电压环路 输入电压1.6-1.8v ,输出电
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功