PlotKit.QuickStart.txt
9.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
{% extends "basex.html" %}
{% load markup %}
{% block pageid %}code{% endblock %}
{% block title %}PlotKit Quick Start{% endblock %}
{% block headers %}
<script type="text/javascript" src="/js/mochi/MochiKit.js"></script>
<script type="text/javascript" src="/js/plotkit/Base.js"></script>
<script type="text/javascript" src="/js/plotkit/Layout.js"></script>
<script type="text/javascript" src="/js/plotkit/Canvas.js"></script>
<script type="text/javascript" src="/js/plotkit/SweetCanvas.js"></script>
<link href="doc.css" media="screen" rel="stylesheet" type="text/css" />
{% endblock %}
{% block content %}
<div class="page doc">
{% filter markdown %}
PlotKit Quick Start
===================
This is just a quick guide on how to get started with PlotKit. If you
want to delve in deeper, be sure to check out the
[documentation][docs].
Canvas or SVG
=============
Before we start, you should know a little about HTML Canvas and SVG
support in the real browser world. For a more indepth coverage, please
check the [SVG/Canvas Browser Support Status][Browser].
Basically, Canvas and SVG have similar support across modern
browsers. Canvas is supported by Opera 9, Safari 2 and Firefox 1.5,
which probably only accounts for 10% of browsers. PlotKit also supports
a degraded Emulated Canvas mode under IE which means you can achieve
nearly 90% browser support using this technology.
However, the future is in SVG where Firefox 1.5 and Opera 8 have
support it, and IE6 with the Adobe SVG Viewer (ASV) install means you
get around the same coverage as HTML Canvas.
PlotKit plans to support both to maximise compatiblity. Canvas has a
simplier rendering engine, but can do the equivalent to what SVG can
apart from animation. SVG has wider support, but is more complex and
support for key features varies widely across different
implementations.
Graphing with Canvas
====================
Download the latest [PlotKit][] and [MochiKit][] and extract it on to
your web server and make sure ``plotkit-0.8/PlotKit`` and
``mochikit/MochiKit`` is visible.
Preparing the HTML
------------------
Add the script headers for PlotKit to work.
<script type="text/javascript" src="/mochikit/MochiKit.js"></script>
<script type="text/javascript" src="/plotkit/Base.js"></script>
<script type="text/javascript" src="/plotkit/Layout.js"></script>
<script type="text/javascript" src="/plotkit/Canvas.js"></script>
<script type="text/javascript" src="/plotkit/SweetCanvas.js"></script>
MochiKit.js is an autoloader for all the elements of MochiKit. You can
reduce the size of it by making your own packed version or just
including the script headers individually.
The other four PlotKit javascript files deal with some basic
functionality, the layout engine and two renderers, Canvas and
SweetCanvas.
Now we add the ``<canvas>`` tag to where we want the graph to
appear. Note PlotKit __requires__ the ``<canvas>`` tag is enclosed
inside a <div> tags for labels to work.
<div><canvas id="graph" height="300" width="300"></canvas></div>
This will create a blank canvas of 300 by 300 pixels.
Javascript
----------
There are only two simple steps to draw a chart, first is the create a
layout with our data and second is to create the renderer. So lets
start off with creating the layout.
### Layout and Data
var layout = new PlotKit.Layout("bar", {});
layout.addDataset("sqrt", [[0, 0], [1, 1], [2, 1.414], [3, 1.73], [4, 2]]);
layout.evaluate();
There, it is that simple. Lets explain what each line is doing:
1. ``var layout = new PlotKit.Layout("bar", {});``
We create a new layout object, and tell it that we want a bar chart in the first parameter. The second parameter allows us to pass additional options, which we will go on to later. It can be left null, or in this case just an empty array.
2. ``layout.addDataset("sqrt", [[0, 0], [1, 1]...)``
This will add a new dataset to the layout. You can add multiple datasets by specifying a different name in the first parameter for each dataset. The dataset consists of an array of (x, y) values. These must be numeric, either floating point or integers.
Note that PlotKit does not deal with negative numbers at the moment.
3. ``layout.evaluate();``
This will be the last command you make on the layout before passing it to the renderer. This will tell the layout to calculate the layout of the chart so the renderer can draw it. It is an expensive operation, so do not call it frequently, only unless the data or options have been changed.
### Renderer
var canvas = MochiKit.DOM.getElement("graph");
var plotter = new PlotKit.SweetCanvasRenderer(canvas, layout, {});
plotter.render();
1. ``var canvas = MochiKit.DOM.getElement("graph");``
This line will get the HTML element we defined earlier.
2. ``var plotter = new PlotKit.SweetCanvasRenderer(canvas, layout, {});``
This will create the renderer to work on the object passed, and also with the data in the layout we created earlier. Again, the third parameter here is for options to relates to the look of the graph. We will show you some things you can do with this in the following section.
3. ``plotter.render()``
This line will render the graph.
### Putting it altogether
function drawGraph() {
var layout = new PlotKit.Layout("bar", {});
layout.addDataset("sqrt", [[0, 0], [1, 1], [2, 1.414], [3, 1.73], [4, 2]]);
layout.evaluate();
var canvas = MochiKit.DOM.getElement("graph");
var plotter = new PlotKit.SweetCanvasRenderer(canvas, layout, {});
plotter.render();
}
MochiKit.DOM.addLoadEvent(drawGraph);
This is a sample of what you would use to plot the graph of sqare roots for 0 to 4. Make sure you plot the graph on the load event because the DOM will not be ready if when the Javascript is first loaded.
See this in an [HTML example here][example1].
### Additional Options
We mentioned that both the layout and renderer may take some additional options. In order to take advantage of that, we can use a simple options dictionary to store options for both layout and the renderer, in this way:
var options = {
"IECanvasHTC": "/plotkit/iecanvas.htc",
"colorScheme": PlotKit.Base.palette(PlotKit.Base.baseColors()[0]),
"padding": {left: 0, right: 0, top: 10, bottom: 30},
"xTicks": [{v:0, label:"zero"},
{v:1, label:"one"},
{v:2, label:"two"},
{v:3, label:"three"},
{v:4, label:"four"}],
"drawYAxis": false
};
function drawGraph() {
var layout = new PlotKit.Layout("bar", options);
layout.addDataset("sqrt", [[0, 0], [1, 1], [2, 1.414], [3, 1.73], [4, 2]]);
layout.evaluate();
var canvas = MochiKit.DOM.getElement("graph");
var plotter = new PlotKit.SweetCanvasRenderer(canvas, layout, options);
plotter.render();
}
MochiKit.DOM.addLoadEvent(drawGraph);
Here we define some additional options to affect how our graph is rendered.
1. First line defines where the ``IECanvasHTC`` behaviour file is so that we can have IE support.
2. Second line defines a new colorScheme to use. Here we are just using another preset color scheme that creates a palette out of the 6th preset base colour.
3. Third line defines some custom labels we would like by giving the mapping from X value to label.
4. Fourth line tells the renderer not to draw the Y axis.
Demonstration
=============
To show you that is how it works, below is the graph defined exactly how it is presented in this quick start guide. On the left is a PNG of what you should expect and on the right is what it actually renders to.
### Bar charts
<div>
<div style="float: left; padding-right: 5px;" width="300" height="300"><img src="barsample.png" width="300" height="300" alt="screenshot of graph" /></div>
<div style="float: left; padding-left: 5px;" width="300" height="300"><canvas id="bargraph" width="300" height="300"></canvas></div>
<div style="clear: both; height: 1px; width: 1px;"> </div>
</div>
### Pie Charts
<div>
<div style="float: left; padding-right: 5px;" width="300" height="300"><img src="piesample.png" width="300" height="300" alt="screenshot of graph" /></div>
<div style="float: left; padding-left: 5px;" width="300" height="300"><canvas id="piegraph" width="300" height="300"></canvas></div>
<div style="clear: both; height: 1px; width: 1px;"> </div>
</div>
Author
======
Alastair Tse - Last Updated: 17th March 2006
[docs]: PlotKit.html
[Browser]: SVGCanvasCompat.html
[PlotKit]: http://www.liquidx.net/plotkit/
[MochiKit]: http://www.mochikit.com/
{% endfilter %}
</div>
<script type="text/javascript">
<!--
var options = {
"IECanvasHTC": "../plotkit/iecanvas.htc",
"colorScheme": PlotKit.Base.palette(PlotKit.Base.baseColors()[0]),
"padding": {left: 10, right: 10, top: 10, bottom: 30},
"xTicks": [{v:0, label:"zero"},
{v:1, label:"one"},
{v:2, label:"two"},
{v:3, label:"three"},
{v:4, label:"four"}],
"drawYAxis": false,
"pieRadius": 0.35
};
function drawBarGraph() {
var layout = new PlotKit.Layout("bar", options);
layout.addDataset("sqrt", [[0, 0], [1, 1], [2, 1.414], [3, 1.73], [4, 2]]);
layout.evaluate();
var canvas = MochiKit.DOM.getElement("bargraph");
var plotter = new PlotKit.SweetCanvasRenderer(canvas, layout, options);
plotter.render();
}
MochiKit.DOM.addLoadEvent(drawBarGraph);
function drawPieGraph() {
var layout = new PlotKit.Layout("pie", options);
layout.addDataset("sqrt", [[0, 0], [1, 1], [2, 1.414], [3, 1.73], [4, 2]]);
layout.evaluate();
var canvas = MochiKit.DOM.getElement("piegraph");
var plotter = new PlotKit.SweetCanvasRenderer(canvas, layout, options);
plotter.render();
}
// Damn opera 9 has a bug with javascript subclassing??
// but works in sweet.html, grr!!
if (navigator.userAgent.toLowerCase().indexOf("opera") == -1) {
MochiKit.DOM.addLoadEvent(drawPieGraph);
}
//-->
</script>
{% endblock %}