2 <!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns=
"http://www.w3.org/1999/xhtml" lang=
"en" xml:
lang=
"en" >
5 <title>PlotKit Documentation | liquidx
</title>
6 <meta http-equiv=
"Content-Type" content=
"text/html; charset=UTF-8" />
7 <link href=
"http://media.liquidx.net/css/x_general.css" media=
"screen" rel=
"Stylesheet" type=
"text/css" />
8 <link href=
"http://media.liquidx.net/css/x_header.css" media=
"screen" rel=
"Stylesheet" type=
"text/css" />
9 <link href=
"http://media.liquidx.net/css/x_layout.css" media=
"screen" rel=
"Stylesheet" type=
"text/css" />
10 <link href=
"http://media.liquidx.net/css/x_blocks.css" media=
"screen" rel=
"Stylesheet" type=
"text/css" />
11 <link rel=
"icon" href=
"/favicon.png" type=
"image/x-png">
12 <link rel=
"shortcut icon" href=
"/favicon.png" type=
"image/x-png">
14 <script defer
type=
"text/javascript" src=
"http://media.liquidx.net/js/pngfix.js"></script>
17 <link href=
"doc.css" media=
"screen" rel=
"stylesheet" type=
"text/css" />
23 <div id=
"logo"><a href=
"http://www.liquidx.net/"><img src=
"http://media.liquidx.net/imgx/logo.png" width=
"256" height=
"128" alt=
"liquidx.net" /></a></div>
25 <div id=
"menu-l"><img src=
"http://media.liquidx.net/imgx/menu_l.png" width=
"17" height=
"28" alt=
"menu cap" /></div><div id=
"menu-r"><img src=
"http://media.liquidx.net/imgx/menu_r.png" width=
"17" height=
"28" alt=
"menu cap" /></div>
27 <ul id=
"menu" class=
"code">
28 <li class=
"tab" id=
"blog"><a href=
"http://www.liquidx.net/" title=
"blog/home">blog
</a></li>
29 <li class=
"tab" id=
"code"><a href=
"http://www.liquidx.net/code/" title=
"software i have written">software
</a></li>
30 <li class=
"tab" id=
"dev"><a href=
"http://projects.liquidx.net/" title=
"source code for my open source projects">dev
</a></li>
31 <li class=
"tab" id=
"photos"><a href=
"http://al.tse.id.au/gallery/" title=
"photos and videos">photos
</a></li>
32 <li class=
"tab" id=
"research"><a href=
"http://al.tse.id.au/research/" title=
"research profile">research
</a></li>
33 <li class=
"tab" id=
"links"><a href=
"http://www.liquidx.net/links/" title=
"my bookmarks">linkblog
</a></li>
34 <li class=
"tab" id=
"stats"><a href=
"http://stats.liquidx.net/" title=
"stats for various parts of my website">stats
</a></li>
35 <li class=
"tab" id=
"status"><a href=
"http://www.liquidx.net/status/" title=
"weather report for alastair">status
</a></li>
36 <li class=
"tab" id=
"about"><a href=
"http://al.tse.id.au/" title=
"about alastair tse">aboutme
</a></li>
40 <div id=
"quickbuttons">
41 <span class=
"quickbutton"><a href=
"http://www.liquidx.net/albumartwidget/"><img src=
"http://media.liquidx.net/imgx/quick_widget.png" alt=
"album art widget" /></a></span>
42 <span class=
"quickbutton"><a href=
"http://www.liquidx.net/plotkit/"><img src=
"http://media.liquidx.net/imgx/quick_plotkit.png" alt=
"plotkit" /></a></span>
43 <span class=
"quickbutton"><a href=
"http://www.liquidx.net/fruity/"><img src=
"http://media.liquidx.net/imgx/quick_fruity.png" alt=
"fruity" /></a></span>
49 <div class=
"page doc">
53 <p> <a href=
"http://www.liquidx.net/plotkit/">PlotKit
</a> is a Javascript graph plotting library. It is aimed at web
54 applications that require plotting series of data in modern web
57 <p>PlotKit requires
<a href=
"http://mochikit.com/">MochiKit
</a>. (
1.3 or higher)
59 <p>PlotKit supports both HTML Canvas and SVG, along with an
60 <a href=
"http://me.eae.net/archive/2005/12/29/canvas-in-ie/">emulated canvas for Internet Explorer
</a>.
62 <p>PlotKit is easily extensible to include other rendering engines,
63 styles and layouts. Please pursue the documentation for more
66 <p>PlotKit is licensed under the BSD License, so you can include it in
67 your free or commercial applications without worrying.
70 <h1> PlotKit Components
</h1>
72 <h2> Base Classes
</h2>
75 <a href=
"PlotKit.Base.html">Base
</a> : Common functionality that is used in other classes,
76 including default styles.
80 <a href=
"PlotKit.Layout.html">Layout
</a> : The default chart layout engine, supports bar, line and
85 <a href=
"PlotKit.Renderer.html">Renderer
</a>: Customising the look of the output
89 <h2> Renderer Specific Implementations
</h2>
92 <a href=
"PlotKit.Canvas.html">CanvasRenderer
</a>: Basic renderer using an HTML Canvas.
96 <a href=
"PlotKit.SVG.html">SVGRenderer
</a>: Basic renderer using SVG.
100 <a href=
"PlotKit.SweetCanvas.html">SweetCanvasRenderer
</a>: Customised Renderer that builds on CanvasRenderer to provide nicer looking charts.
104 <a href=
"PlotKit.SweetSVG.html">SweetSVGRenderer
</a>: Customised renderer that builds on SVGRenderer to provide nicer looking charts.
108 <h2> Utility Classes
</h2>
111 <a href=
"PlotKit.EasyPlot.html">EasyPlot
</a>: Simple Wrapper around classes to provide one-line plotting.
115 <h1> Getting Started
</h1>
118 <a href=
"PlotKit.QuickStart.html">PlotKit Quick Start
</a> - A thorough quick start to getting charts working for Safari, Mozilla, Firefox, Opera and IE.
122 <a href=
"SVGCanvasCompat.html">SVG/Canvas Browser Support Status
</a> - Quirks about browser support that you should know about.
126 <a href=
"http://media.liquidx.net/js/plotkit-tests/quickstart.html">Simple Canvas Demo
</a> - Very basic Canvas demo all contained in an HTML file.
130 <a href=
"http://media.liquidx.net/js/plotkit-tests/quickstart-svg.html">Simple SVG Demo
</a> - Very basic SVG demo all contained in an HTML file.
137 Unit Tests
<a href=
"http://media.liquidx.net/js/plotkit-tests/basic.html">Canvas
</a>,
<a href=
"http://media.liquidx.net/js/plotkit-tests/svg.html">SVG
</a>,
<a href=
"http://media.liquidx.net/js/plotkit-tests/sweet.html">SweetCanvas
</a>,
<a href=
"http://media.liquidx.net/js/plotkit-tests/sweet-svg.html">SweetSVG
</a>.
141 <a href=
"http://media.liquidx.net/js/plotkit-tests/dynamic.html">Dynamic Charting
</a>.
145 <a href=
"http://media.liquidx.net/js/plotkit-tests/labels.html">Labels Example
</a>. Thanks to Christopher Armstrong.
149 <a href=
"http://media.liquidx.net/js/plotkit-tests/labels-img.html">Labels with Images
</a>.
153 <a href=
"http://media.liquidx.net/js/plotkit-tests/axis.html">Axis Restrictions
</a>.
157 <h1> Version History
</h1>
162 Total rewrite from
<a href=
"http://www.liquidx.net/canvasgraphjs/">CanvasGraph
0.7</a>
169 Fixed some redraw issues with clear()
173 Replaced IECanvas.HTC with ExplorerCanvas
177 Added auto import and packed versions just like MochiKit.
181 Added horizontal bar chart rendering mode.
185 Added awareness of prototype.js and workaround Array/Object mutilation issues with MochiKit.
189 Added EasyPlot for single line plotting with Ajax support.
193 More tests,
<a href=
"http://media.liquidx.net/js/plotkit-tests/dynamic.html">dynamic charting
</a> and quickstart demos.
197 <h3>PlotKit
0.9.1</h3>
200 Make Sweet{Canvas/SVG}Renderers respect shouldFill.
204 Fixed ignoring of maximum x and y values when setting xAxis/yAxis.
208 Fixed typo for calculating yrange in Layout.js (thanks to
213 Changed SweetCanvasRenderer to use axisLineColor for drawing lines over
214 background (thanks to HubrisSonic).
218 Fixed bug in y-axis tick drawing (thanks to Cliff).
222 Fixed x-axis calculation bug when xAxisIsZero is false (thanks to
227 Fixed xTicks drawing that exceed the bounds of the chart (thanks to
232 Fixed barchart drawing with only
2 values (thanks to HubrisSonic)
236 Hide pie chart labels of
0% (thanks to Attiks)
240 Added optional field to addDatasetFromTable to include x-axis labels.
244 Updated excanvas.js version to fix possible printing issues.
253 AutoSelectRenderer, automatically choose Canvas or SVG by auto detecting browser support.
257 <h3>Version
0.10</h3>
264 Defined Event System Support
281 <h3>Syndication Feeds:
</h3>
284 <li><a href=
"http://www.liquidx.net/blog/feed/atom/" class=
"feed" title=
"feed for all posts on liquidx.net"><img src=
"http://media.liquidx.net/imgx/feed.gif" class=
"feed" alt=
"feed" />Atom Feed for the Blog Entries
</a></li>
285 <li><a href=
"http://www.liquidx.net/blog/feed/rss/" class=
"feed" title=
"feed for all posts on liquidx.net"><img src=
"http://media.liquidx.net/imgx/feed.gif" class=
"feed" alt=
"feed" />RSS Feed for the Blog Entries
</a></li>
286 <li><a href=
"http://www.liquidx.net/comments/feed/atom/" class=
"feed" title=
"feed for all posts on liquidx.net"><img src=
"http://media.liquidx.net/imgx/feed.gif" class=
"feed" alt=
"feed" />Feed for All Comments
</a></li>
287 <li><a href=
"http://www.liquidx.net/links/feed/atom/" class=
"feed" title=
"feed for all bookmarked links"><img src=
"http://media.liquidx.net/imgx/feed.gif" class=
"feed" alt=
"feed" />Feed for Links
</a></li>
292 <h3>About this site:
</h3>
293 <p>Content on this site is licensed under
<a href=
"http://creativecommons.org/licenses/by/2.5/">CC By Attribution
</a> unless otherwise specified.
294 Copyright (c)
2002-
2006,
<a href=
"http://al.tse.id.au/">Alastair Tse
</a>.
</p>
295 <p>For more information, see
<a href=
"http://al.tse.id.au/">al.tse.id.au
</a>.
</p>
296 <p><script type=
"text/javascript" src=
"http://technorati.com/embed/itwctkzez.js"></script></p>
299 <h3>Is Made Possible By:
</h3>
302 <dt><a href=
"http://ecto.kung-foo.tv/" class=
"clean">ecto
</a>.
</dt>
303 <dd>Blogging client for Mac
</dd>
304 <dt><a href=
"http://djangoproject.com/" class=
"clean">Django
</a>.
</dt>
305 <dd>Python Web Framework
</dd>
306 <dt><a href=
"http://www.lighttpd.net/" class=
"clean">lighttpd
</a>.
</dt>
307 <dd>Really Fast Web Server
</dd>
308 <dt><a href=
"http://www.saddi.com/software/flup/" class=
"clean">flup
</a>.
</dt>
309 <dd>FastCGI for Python
</dd>
314 <h3>Search My Sites:
</h3>
316 <div style='margin:
10px; text-align: center; width:
160px;'
><form action='http://www.rollyo.com/search.html'
><fieldset style='margin:
0; padding:
4px
0 0 0; height:
60px; border: none; background: url(http://rollyo.com/remote/togo-bg4.png) no-repeat top left;'
><div style=
"position: absolute; float:left; z-index:99; width: 46px; height: 50px;"><a href=
"http://rollyo.com"><img style=
"border: none;" height=
"50" width=
"46" src=
"http://rollyo.com/remote/x.gif"></a></div> <input type='text' size='
30' style='float: left; width:
90px; margin:
2px
0 0 48px; padding:
0; font-size:
12px;' name='q' value='Search...' onclick='this.
value=
"";'
/><br /> <select name='sid' style='float: left; width:
78px; height:
15px; margin:
12px
0 0 46px; font-size:
7pt; padding:
0;'
><option value='
106081' selected='selected'
>liquidx
</option><option value='web'
>Search The Web
</option></select><input type='image' src='http://rollyo.com/remote/btn-togo.png' alt='Go' style='margin:
12px
0 0 3px; float: left;'
/><input type='hidden' name='togo-v' value='
1'
/></fieldset></form></div>
321 <div class=
"clear"> </div>
327 <script src=
"http://www.google-analytics.com/urchin.js" type=
"text/javascript"></script>
328 <script type=
"text/javascript">
329 _uacct =
"UA-58117-1";