Bar Chart: http://bl.ocks.org/mbostock/3885304
这是一个画柱状图的基本形式。
Axis是数轴;
tickets是数轴上的标尺,tickets第二个参数% 可以使[0, 1]的数以百分比显示;
rangeRoundBands 在[0, width] 上按区间划分,正好适合柱状图,rangePoints 在[0, width] 上按点位划分;
t...
分类:
其他好文 时间:
2014-12-17 18:33:43
阅读次数:
198
$('#container').highcharts({ chart: { zoomType: 'xy' }, title: { text: 'Average Monthl...
分类:
其他好文 时间:
2014-12-15 16:47:44
阅读次数:
214
c# 通过.net自带的chart控件绘制饼图pie chart需要实现的目标是:1.将数据绑定到pie的后台数据中,自动生成饼图。2.生成的饼图有详细文字的说明。具体的实现步骤:>>前台界面的设置:1.设置chart1的属性Legends中默认的Legend1的Enable为false;2.设置S...
$(function () { $('#container').highcharts({ chart: { }, xAxis: { categories: ['Jan', 'Feb', 'Mar', 'Apr', ...
分类:
其他好文 时间:
2014-12-12 18:55:25
阅读次数:
889
微信返回news类型的消息,如果在Url中直接填写诸如www.yourweb.com/chart.aspx?token=123&area=chengdu这样的网址的话,到了微信客户端,用户只能收到www.yourweb.com/chart.aspx?token=123& 符号之后的其他部分就被截掉了...
分类:
微信 时间:
2014-12-12 18:33:45
阅读次数:
298
以下是Source Application去query Target Application中的content provider时的流程,此处只画到content provider启动。
The picture above is the flow chart for how Content Providers started
(1) Source APP Inform AMS ...
分类:
移动开发 时间:
2014-12-10 16:26:00
阅读次数:
177
下图描述了在source application中broadcast一个intent,注册此intent的Target Application如何启动和接收的流程。
The picture above is the flow chart for how the source Application broadcast an intent
(1) Inform AMS to br...
分类:
移动开发 时间:
2014-12-10 12:36:08
阅读次数:
192
下图描述从一个Application A如何bind在Application B中的Service.
The picture above is the flow chart for how the source Application bind a target service
Major includes four steps:
(1) Inform AMS to ...
分类:
移动开发 时间:
2014-12-09 21:34:02
阅读次数:
255
好了,用上篇介绍的工具,跟踪了下startActivity在system_server中的流程,如下:
The picture below is the flow chart for how the source Activity start a target activity
Major includes four steps:
(1) Preparation, flow chart in...
分类:
移动开发 时间:
2014-12-09 10:36:36
阅读次数:
194
1.<scriptsrc="
2.<scripttype="text/javascript">
//路径配置
require.config({
paths:{
echarts:‘http://echarts.baidu.com/build/dist‘
}
});
//使用
require(//通过动态加载使用echarts
[
‘echarts‘,
‘echarts/chart/bar‘,//使用柱状图就加载bar模块,按需加载
‘..
分类:
其他好文 时间:
2014-12-08 15:49:13
阅读次数:
221