Subversion-Projekte lars-tiefland.cienc

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
9 lars 1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
 
3
<html><head><title>jqPlot Options</title><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body class="ContentPage" onLoad="NDOnLoad()"><script language=JavaScript><!--
4
if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script>
5
 
6
<!--  Generated by Natural Docs, version 1.4 -->
7
<!--  http://www.naturaldocs.org  -->
8
 
9
<!-- saved from url=(0026)http://www.naturaldocs.org -->
10
 
11
 
12
 
13
 
14
<div id=Content><div class="CSection"><div class=CTopic id=MainTopic><div class="CTitle logo"><div class="nav"><a class="nav" href="../../index.php"><span>&gt;</span>Home</a><a class="nav"  href="../../tests/"><span>&gt;</span>Examples</a><a class="nav"  href="../../docs/"><span>&gt;</span>Docs</a><a class="nav"  href="http://bitbucket.org/cleonello/jqplot/downloads/"><span>&gt;</span>Download</a><a class="nav" href="../../info.php"><span>&gt;</span>Info</a><a class="nav"  href="../../donate.php"><span>&gt;</span>Donate</a></div><a name="jqPlot_Options"></a>jqPlot Options</div><div class=CBody><p><b>This document is out of date.&nbsp;  While the options described here should still be relavent and valid, it has not been updated for many new options.&nbsp;  Sorry for this inconvenience.</b></p><p>This document describes the options available to jqPlot.&nbsp;  These are set with the third argument to the $.jqplot(&lsquo;target&rsquo;, data, options) function.&nbsp; Options are described using the following convention:</p><blockquote><pre>property: default, // notes</pre></blockquote><p>This document is not complete!&nbsp;  Not all options are shown!&nbsp; Further information about the options can be found in the online API documentation.&nbsp;  For details on how the options relate to the API documentation, see the <a href="optionsTutorial-txt.html#Options_Tutorial" class=LSection id=link1 onMouseOver="ShowTip(event, 'tt1', 'link1')" onMouseOut="HideTip('tt1')">Options Tutorial</a> in the optionsTutorial.txt file.</p><blockquote><pre>options =
15
{
16
    seriesColors: [ &quot;#4bb2c5&quot;, &quot;#c5b47f&quot;, &quot;#EAA228&quot;, &quot;#579575&quot;, &quot;#839557&quot;, &quot;#958c12&quot;,
17
        &quot;#953579&quot;, &quot;#4b5de4&quot;, &quot;#d8b83f&quot;, &quot;#ff5800&quot;, &quot;#0085cc&quot;],  // colors that will
18
         // be assigned to the series.  If there are more series than colors, colors
19
         // will wrap around and start at the beginning again.
20
 
21
    // when fillToZero is enabled, this sets the colors to use for portions of the line below zero.
22
    negativeSeriesColors: [ &quot;#498991&quot;, &quot;#C08840&quot;, &quot;#9F9274&quot;, &quot;#546D61&quot;, &quot;#646C4A&quot;, &quot;#6F6621&quot;,
23
                            &quot;#6E3F5F&quot;, &quot;#4F64B0&quot;, &quot;#A89050&quot;, &quot;#C45923&quot;, &quot;#187399&quot;, &quot;#945381&quot;,
24
                            &quot;#959E5C&quot;, &quot;#C7AF7B&quot;, &quot;#478396&quot;, &quot;#907294&quot;],
25
 
26
    sortData : true,    // if true, will sort the data passed in by the user.
27
    stackSeries: false, // if true, will create a stack plot.
28
                        // Currently supported by line and bar graphs.
29
 
30
    title: '',      // Title for the plot.  Can also be specified as an object like:
31
 
32
    title: {
33
        text: '',   // title for the plot,
34
        show: true,
35
    },
36
 
37
    animate : false,        // if true, the series will be animated on initial drawing.
38
                            // This support is renderer-dependent; the renderer must support animation.
39
    animateReplot : false,  // if true, the series will be animated after every replot() call.
40
                            // Use with caution!  Replots can happen very frequently under
41
                            // certain circumstances (e.g. resizing, dragging points) and
42
                            // animation in these situations can cause problems.
43
    captureRightClick : false,   // if true, right-click events are intercepted and a jqplotRightClick
44
                                 // event will be fired.  This will also block the context menu.
45
    dataRenderer : undefined, // A callable which can be used to preprocess data passed into the plot.
46
                              // Will be called with 3 arguments: the plot data, a reference to the plot,
47
                              // and the value of dataRendererOptions.
48
 
49
    dataRendererOptions : undefined,    // Options that will be passed to the dataRenderer,
50
                                        // if that option is supplied.  Can be of any type.
51
 
52
    gridData : [],  // array of grid coordinates corresponding to the data points;
53
                    // normally jqPlot will calculate this for you.
54
 
55
    axesDefaults: {
56
        show: false,    // whether or not to render the axis.  Determined automatically.
57
        min: null,      // minimum numerical value of the axis.  Determined automatically.
58
        max: null,      // maximum numerical value of the axis.  Determined automatically.
59
        pad: 1.2,       // a factor multiplied by the data range on the axis to give the
60
                        // axis range so that data points don't fall on the edges of the axis.
61
        ticks: [],      // a 1D [val1, val2, ...], or 2D [[val, label], [val, label], ...]
62
                        // array of ticks to use.  Computed automatically.
63
        numberTicks: undefined,
64
        renderer: $.jqplot.LinearAxisRenderer,  // renderer to use to draw the axis,
65
        rendererOptions: {},    // options to pass to the renderer.  LinearAxisRenderer
66
                                // has no options,
67
        tickOptions: {
68
            mark: 'outside',    // Where to put the tick mark on the axis
69
                                // 'outside', 'inside' or 'cross'
70
            showMark: true,     // whether or not to show the mark on the axis
71
            showGridline: true, // whether to draw a gridline (across the whole grid) at this tick
72
            isMinorTick: false, // whether this is a minor tick
73
            markSize: 4,        // length the tick will extend beyond the grid in pixels.  For
74
                                // 'cross', length will be added above and below the grid boundary
75
            show: true,         // whether to show the tick (mark and label)
76
            showLabel: true,    // whether to show the text label at the tick
77
            prefix: '',         // String to prepend to the tick label.
78
                                // Prefix is prepended to the formatted tick label
79
            suffix: '',         // String to append to the tick label.
80
                                // Suffix is appended to the formatted tick label
81
            formatString: '',   // format string to use with the axis tick formatter
82
            fontFamily: '',     // css spec for the font-size css attribute
83
            fontSize: '',       // css spec for the font-size css attribute
84
            textColor: '',      // css spec for the color attribute
85
            escapeHTML: false   // true to escape HTML entities in the label
86
        }
87
        showTicks: true,        // whether or not to show the tick labels,
88
        showTickMarks: true,    // whether or not to show the tick marks
89
    },
90
 
91
    axes: {
92
        xaxis: {
93
            // same options as axesDefaults
94
        },
95
        yaxis: {
96
            // same options as axesDefaults
97
        },
98
        x2axis: {
99
            // same options as axesDefaults
100
        },
101
        y2axis: {
102
            // same options as axesDefaults
103
        }
104
    },
105
 
106
    seriesDefaults: {
107
        show: true,     // whether to render the series.
108
        xaxis: 'xaxis', // either 'xaxis' or 'x2axis'.
109
        yaxis: 'yaxis', // either 'yaxis' or 'y2axis'.
110
        label: '',      // label to use in the legend for this line.
111
        color: '',      // CSS color spec to use for the line.  Determined automatically.
112
        lineWidth: 2.5, // Width of the line in pixels.
113
        shadow: true,   // show shadow or not.
114
        shadowAngle: 45,    // angle (degrees) of the shadow, clockwise from x axis.
115
        shadowOffset: 1.25, // offset from the line of the shadow.
116
        shadowDepth: 3,     // Number of strokes to make when drawing shadow.  Each
117
                            // stroke offset by shadowOffset from the last.
118
        shadowAlpha: 0.1,   // Opacity of the shadow.
119
        showLine: true,     // whether to render the line segments or not.
120
        showMarker: true,   // render the data point markers or not.
121
        fill: false,        // fill under the line,
122
        fillAndStroke: false,       // stroke a line at top of fill area.
123
        fillColor: undefined,       // custom fill color for filled lines (default is line color).
124
        fillAlpha: undefined,       // custom alpha to apply to fillColor.
125
        renderer: $.jqplot.LineRenderer],    // renderer used to draw the series.
126
        rendererOptions: {}, // options passed to the renderer.  LineRenderer has no options.
127
        markerRenderer: $.jqplot.MarkerRenderer,    // renderer to use to draw the data
128
                                                    // point markers.
129
        markerOptions: {
130
            show: true,             // whether to show data point markers.
131
            style: 'filledCircle',  // circle, diamond, square, filledCircle.
132
                                    // filledDiamond or filledSquare.
133
            lineWidth: 2,       // width of the stroke drawing the marker.
134
            size: 9,            // size (diameter, edge length, etc.) of the marker.
135
            color: '#666666'    // color of marker, set to color of line by default.
136
            shadow: true,       // whether to draw shadow on marker or not.
137
            shadowAngle: 45,    // angle of the shadow.  Clockwise from x axis.
138
            shadowOffset: 1,    // offset from the line of the shadow,
139
            shadowDepth: 3,     // Number of strokes to make when drawing shadow.  Each stroke
140
                                // offset by shadowOffset from the last.
141
            shadowAlpha: 0.07   // Opacity of the shadow
142
        }
143
    },
144
 
145
    series:[
146
        {Each series has same options as seriesDefaults},
147
        {You can override each series individually here}
148
    ],
149
 
150
    legend: {
151
        show: false,
152
        location: 'ne',     // compass direction, nw, n, ne, e, se, s, sw, w.
153
        xoffset: 12,        // pixel offset of the legend box from the x (or x2) axis.
154
        yoffset: 12,        // pixel offset of the legend box from the y (or y2) axis.
155
    },
156
 
157
    grid: {
158
        drawGridLines: true,        // whether to draw lines across the grid or not.
159
        gridLineColor: '#cccccc'    // Color of the grid lines.
160
        background: '#fffdf6',      // CSS color spec for background color of grid.
161
        borderColor: '#999999',     // CSS color spec for border around grid.
162
        borderWidth: 2.0,           // pixel width of border around grid.
163
        shadow: true,               // draw a shadow for grid.
164
        shadowAngle: 45,            // angle of the shadow.  Clockwise from x axis.
165
        shadowOffset: 1.5,          // offset from the line of the shadow.
166
        shadowWidth: 3,             // width of the stroke for the shadow.
167
        shadowDepth: 3,             // Number of strokes to make when drawing shadow.
168
                                    // Each stroke offset by shadowOffset from the last.
169
        shadowAlpha: 0.07           // Opacity of the shadow
170
        renderer: $.jqplot.CanvasGridRenderer,  // renderer to use to draw the grid.
171
        rendererOptions: {}         // options to pass to the renderer.  Note, the default
172
                                    // CanvasGridRenderer takes no additional options.
173
    },
174
 
175
    // Size of the grid containing the plot.
176
    gridDimensions: {
177
        height: null,
178
        width: null
179
    },
180
 
181
    // Padding to apply around the grid containing the plot.
182
    gridPadding: {
183
        top: null,
184
        bottom: null,
185
        left: null,
186
        right: null
187
    },
188
 
189
    noDataIndicator : object, // For setting up a mock plot with a data loading indicator if
190
                              // no data is specified.  Must have .show=true, .axes, and a
191
                              // .indicator string that will be displayed.
192
 
193
    // Plugin and renderer options.
194
 
195
    // BarRenderer.
196
    // With BarRenderer, you can specify additional options in the rendererOptions object
197
    // on the series or on the seriesDefaults object.  Note, some options are re-specified
198
    // (like shadowDepth) to override lineRenderer defaults from which BarRenderer inherits.
199
 
200
    seriesDefaults: {
201
        rendererOptions: {
202
            barPadding: 8,      // number of pixels between adjacent bars in the same
203
                                // group (same category or bin).
204
            barMargin: 10,      // number of pixels between adjacent groups of bars.
205
            barDirection: 'vertical', // vertical or horizontal.
206
            barWidth: null,     // width of the bars.  null to calculate automatically.
207
            shadowOffset: 2,    // offset from the bar edge to stroke the shadow.
208
            shadowDepth: 5,     // number of strokes to make for the shadow.
209
            shadowAlpha: 0.8,   // transparency of the shadow.
210
        }
211
    },
212
 
213
    // Cursor
214
    // Options are passed to the cursor plugin through the &quot;cursor&quot; object at the top
215
    // level of the options object.
216
 
217
    cursor: {
218
        style: 'crosshair',     // A CSS spec for the cursor type to change the
219
                                // cursor to when over plot.
220
        show: true,
221
        showTooltip: true,      // show a tooltip showing cursor position.
222
        followMouse: false,     // whether tooltip should follow the mouse or be stationary.
223
        tooltipLocation: 'se',  // location of the tooltip either relative to the mouse
224
                                // (followMouse=true) or relative to the plot.  One of
225
                                // the compass directions, n, ne, e, se, etc.
226
        tooltipOffset: 6,       // pixel offset of the tooltip from the mouse or the axes.
227
        showTooltipGridPosition: false,     // show the grid pixel coordinates of the mouse
228
                                            // in the tooltip.
229
        showTooltipUnitPosition: true,      // show the coordinates in data units of the mouse
230
                                            // in the tooltip.
231
        tooltipFormatString: '%.4P',    // sprintf style format string for tooltip values.
232
        useAxesFormatters: true,        // whether to use the same formatter and formatStrings
233
                                        // as used by the axes, or to use the formatString
234
                                        // specified on the cursor with sprintf.
235
        tooltipAxesGroups: [],  // show only specified axes groups in tooltip.  Would specify like:
236
                                // [['xaxis', 'yaxis'], ['xaxis', 'y2axis']].  By default, all axes
237
                                // combinations with for the series in the plot are shown.
238
 
239
    },
240
 
241
    // Dragable
242
    // Dragable options are specified with the &quot;dragable&quot; object at the top level
243
    // of the options object.
244
    // (Note that 'dragable' is the name and spelling used by the plugin, even though
245
    // the correct word is 'draggable'.)
246
 
247
    dragable: {
248
        color: undefined,       // custom color to use for the dragged point and dragged line
249
                                // section. default will use a transparent variant of the line color.
250
        constrainTo: 'none',    // Constrain dragging motion to an axis: 'x', 'y', or 'none'.
251
    },
252
 
253
    // Highlighter
254
    // Highlighter options are specified with the &quot;highlighter&quot; object at the top level
255
    // of the options object.
256
 
257
    highlighter: {
258
        lineWidthAdjust: 2.5,   // pixels to add to the size line stroking the data point marker
259
                                // when showing highlight.  Only affects non filled data point markers.
260
        sizeAdjust: 5,          // pixels to add to the size of filled markers when drawing highlight.
261
        showTooltip: true,      // show a tooltip with data point values.
262
        tooltipLocation: 'nw',  // location of tooltip: n, ne, e, se, s, sw, w, nw.
263
        fadeTooltip: true,      // use fade effect to show/hide tooltip.
264
        tooltipFadeSpeed: &quot;fast&quot;// slow, def, fast, or a number of milliseconds.
265
        tooltipOffset: 2,       // pixel offset of tooltip from the highlight.
266
        tooltipAxes: 'both',    // which axis values to display in the tooltip, x, y or both.
267
        tooltipSeparator: ', '  // separator between values in the tooltip.
268
        useAxesFormatters: true // use the same format string and formatters as used in the axes to
269
                                // display values in the tooltip.
270
        tooltipFormatString: '%.5P' // sprintf format string for the tooltip.  only used if
271
                                    // useAxesFormatters is false.  Will use sprintf formatter with
272
                                    // this string, not the axes formatters.
273
    },
274
 
275
    // LogAxisRenderer
276
    // LogAxisRenderer add 2 options to the axes object.  These options are specified directly on
277
    // the axes or axesDefaults object.
278
 
279
    axesDefaults: {
280
        base: 10,                   // the logarithmic base.
281
        tickDistribution: 'even',   // 'even' or 'power'.  'even' will produce ticks with even visual
282
                                    // (pixel) spacing on the axis.  'power' will produce ticks spaced by
283
                                    // increasing powers of the log base.
284
    },
285
 
286
    // PieRenderer
287
    // PieRenderer accepts options from the rendererOptions object of the series or seriesDefaults object.
288
 
289
    seriesDefaults: {
290
        rendererOptions: {
291
            diameter: undefined, // diameter of pie, auto computed by default.
292
            padding: 20,        // padding between pie and neighboring legend or plot margin.
293
            sliceMargin: 0,     // gap between slices.
294
            fill: true,         // render solid (filled) slices.
295
            shadowOffset: 2,    // offset of the shadow from the chart.
296
            shadowDepth: 5,     // Number of strokes to make when drawing shadow.  Each stroke is
297
                                // offset by shadowOffset from the last.
298
            shadowAlpha: 0.07   // Opacity of the shadow
299
        }
300
    },
301
 
302
    // Trendline
303
    // Trendline takes options on the trendline object of the series or seriesDefaults object.
304
 
305
    seriesDefaults: {
306
        trendline: {
307
            show: true,         // show the trend line
308
            color: '#666666',   // CSS color spec for the trend line.
309
            label: '',          // label for the trend line.
310
            type: 'linear',     // 'linear', 'exponential' or 'exp'
311
            shadow: true,       // show the trend line shadow.
312
            lineWidth: 1.5,     // width of the trend line.
313
            shadowAngle: 45,    // angle of the shadow.  Clockwise from x axis.
314
            shadowOffset: 1.5,  // offset from the line of the shadow.
315
            shadowDepth: 3,     // Number of strokes to make when drawing shadow.
316
                                // Each stroke offset by shadowOffset from the last.
317
            shadowAlpha: 0.07   // Opacity of the shadow
318
        }
319
    }
320
}</pre></blockquote><h4 class=CHeading>Options to be described</h4><h4 class=CHeading>lineRenderer</h4><p>.markerOptions? bands fill fillAndStroke fillStyle highlightColor highlightMouseDown highlightMouseOver shadow shadowOffset showLine</p><h4 class=CHeading>shadowRenderer</h4><p>alpha closePath depth fill fillRect fillStyle isarc lineCap lineJoin linePattern lineWidth offset strokeStyle</p><h4 class=CHeading>shapeRenderer</h4><p>clearRect closePath fill fillRect fillStyle isarc lineCap lineJoin linePattern lineWidth strokeRect strokeStyle</p><h4 class=CHeading>jqplot.effects</h4><p>options.duration ; options.complete</p><h4 class=CHeading>LinearAxisRenderer</h4><p>.min, .max (?) numberTicks tickInternal forceTickAt0 : false,   // If true, a tick will always be drawn at 0.</p><h4 class=CHeading>markerRenderer</h4><p>color fillStyle strokeStyle</p><h4 class=CHeading>canvasGridRenderer</h4><p>lineWidth</p></div></div></div>
321
 
322
</div><!--Content-->
323
 
324
 
325
<div id=Footer>Copyright &copy; 2009 - 2010 Chris Leonello&nbsp; &middot;&nbsp; Updated March 26th, 2013&nbsp; &middot;&nbsp; <a href="http://www.naturaldocs.org">Generated by Natural Docs</a></div><!--Footer-->
326
 
327
 
328
<div id=Menu><div class=MEntry><div class=MGroup><a href="javascript:ToggleMenu('MGroupContent1')">Usage and Options</a><div class=MGroupContent id=MGroupContent1><div class=MEntry><div class=MFile><a href="usage-txt.html">Usage</a></div></div><div class=MEntry><div class=MFile id=MSelected>jqPlot Options</div></div><div class=MEntry><div class=MFile><a href="optionsTutorial-txt.html">Options Tutorial</a></div></div><div class=MEntry><div class=MFile><a href="jqPlotCssStyling-txt.html">jqPlot CSS Customization</a></div></div><div class=MEntry><div class=MFile><a href="changes-txt.html">Change Log</a></div></div><div class=MEntry><div class=MLink><a href="../../tests/">Examples</a></div></div></div></div></div><div class=MEntry><div class=MGroup><a href="javascript:ToggleMenu('MGroupContent4')">API Documentation</a><div class=MGroupContent id=MGroupContent4><div class=MEntry><div class=MFile><a href="jqplot-core-js.html">jqPlot Charts</a></div></div><div class=MEntry><div class=MGroup><a href="javascript:ToggleMenu('MGroupContent2')">Core Renderers</a><div class=MGroupContent id=MGroupContent2><div class=MEntry><div class=MFile><a href="jqplot-axisTickRenderer-js.html">Axis Tick Renderer</a></div></div><div class=MEntry><div class=MFile><a href="jqplot-canvasGridRenderer-js.html">Canvas Grid Renderer</a></div></div><div class=MEntry><div class=MFile><a href="jqplot-divTitleRenderer-js.html">Div Title Renderer</a></div></div><div class=MEntry><div class=MFile><a href="jqplot-linearAxisRenderer-js.html">Linear Axis Renderer</a></div></div><div class=MEntry><div class=MFile><a href="jqplot-markerRenderer-js.html">Marker Renderer</a></div></div><div class=MEntry><div class=MFile><a href="jqplot-shapeRenderer-js.html">Shape Renderer</a></div></div><div class=MEntry><div class=MFile><a href="jqplot-shadowRenderer-js.html">Shadow Renderer</a></div></div><div class=MEntry><div class=MFile><a href="jqplot-lineRenderer-js.html">Line Renderer</a></div></div><div class=MEntry><div class=MFile><a href="jqplot-axisLabelRenderer-js.html">Axis Label Renderer</a></div></div><div class=MEntry><div class=MFile><a href="jqplot-themeEngine-js.html">Theme Engine</a></div></div><div class=MEntry><div class=MFile><a href="jqplot-toImage-js.html">fn</a></div></div></div></div></div><div class=MEntry><div class=MGroup><a href="javascript:ToggleMenu('MGroupContent3')">Plugins</a><div class=MGroupContent id=MGroupContent3><div class=MEntry><div class=MFile><a href="plugins/jqplot-barRenderer-js.html">jqplot.<wbr>BarRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-BezierCurveRenderer-js.html">jqplot.<wbr>BezierCurveRenderer.js</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-blockRenderer-js.html">jqplot.<wbr>BlockRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-bubbleRenderer-js.html">jqplot.<wbr>BubbleRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-canvasAxisLabelRenderer-js.html">jqplot.<wbr>CanvasAxisLabelRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-canvasAxisTickRenderer-js.html">jqplot.<wbr>CanvasAxisTickRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-pyramidGridRenderer-js.html">jqplot.<wbr>CanvasGridRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-canvasOverlay-js.html">jqplot.<wbr>CanvasOverlay</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-categoryAxisRenderer-js.html">jqplot.<wbr>CategoryAxisRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-ciParser-js.html">jqplot.<wbr>ciParser</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-cursor-js.html">jqplot.<wbr>Cursor</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-dateAxisRenderer-js.html">jqplot.<wbr>DateAxisRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-donutRenderer-js.html">jqplot.<wbr>DonutRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-dragable-js.html">jqplot.<wbr>Dragable</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-enhancedLegendRenderer-js.html">jqplot.<wbr>enhancedLegendRenderer.js</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-funnelRenderer-js.html">jqplot.<wbr>FunnelRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-highlighter-js.html">jqplot.<wbr>Highlighter</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-logAxisRenderer-js.html">jqplot.<wbr>LogAxisRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-mekkoAxisRenderer-js.html">jqplot.<wbr>MekkoAxisRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-mekkoRenderer-js.html">jqplot.<wbr>MekkoRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-meterGaugeRenderer-js.html">jqplot.<wbr>MeterGaugeRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-ohlcRenderer-js.html">jqplot.<wbr>OHLCRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-pieRenderer-js.html">jqplot.<wbr>PieRenderer</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-pointLabels-js.html">jqplot.<wbr>PointLabels</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-pyramidAxisRenderer-js.html">jqplot.<wbr>pyramidAxisRenderer.js</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-pyramidRenderer-js.html">jqplot.<wbr>pyramidRenderer.js</a></div></div><div class=MEntry><div class=MFile><a href="plugins/jqplot-trendline-js.html">jqplot.<wbr>Trendline</a></div></div></div></div></div></div></div></div><div class=MEntry><div class=MFile><a href="gpl-2-0-txt.html">GPL License</a></div></div><div class=MEntry><div class=MFile><a href="MIT-LICENSE-txt.html">MIT License</a></div></div><div class=MEntry><div class=MGroup><a href="javascript:ToggleMenu('MGroupContent5')">Index</a><div class=MGroupContent id=MGroupContent5><div class=MEntry><div class=MIndex><a href="../index/General.html">Everything</a></div></div><div class=MEntry><div class=MIndex><a href="../index/Classes.html">Classes</a></div></div><div class=MEntry><div class=MIndex><a href="../index/Properties.html">Properties</a></div></div><div class=MEntry><div class=MIndex><a href="../index/Functions.html">Functions</a></div></div><div class=MEntry><div class=MIndex><a href="../index/Hooks.html">Hooks</a></div></div><div class=MEntry><div class=MIndex><a href="../index/Files.html">Files</a></div></div></div></div></div><script type="text/javascript"><!--
329
var searchPanel = new SearchPanel("searchPanel", "HTML", "../search");
330
--></script><div id=MSearchPanel class=MSearchPanelInactive><input type=text id=MSearchField value=Search onFocus="searchPanel.OnSearchFieldFocus(true)" onBlur="searchPanel.OnSearchFieldFocus(false)" onKeyUp="searchPanel.OnSearchFieldChange()"><select id=MSearchType onFocus="searchPanel.OnSearchTypeFocus(true)" onBlur="searchPanel.OnSearchTypeFocus(false)" onChange="searchPanel.OnSearchTypeChange()"><option  id=MSearchEverything selected value="General">Everything</option><option value="Classes">Classes</option><option value="Files">Files</option><option value="Functions">Functions</option><option value="Hooks">Hooks</option><option value="Properties">Properties</option></select></div><script language=JavaScript><!--
331
HideAllBut([1, 4, 5], 6);// --></script></div><!--Menu-->
332
 
333
 
334
 
335
<!--START_ND_TOOLTIPS-->
336
<div class=CToolTip id="tt1"><div class=CSection>This document will help you understand how jqPlot&rsquo;s options relate to the API documentation and the jqPlot object itself. </div></div><!--END_ND_TOOLTIPS-->
337
 
338
 
339
 
340
 
341
<div id=MSearchResultsWindow><iframe src="" frameborder=0 name=MSearchResults id=MSearchResults></iframe><a href="javascript:searchPanel.CloseResultsWindow()" id=MSearchResultsWindowClose>Close</a></div>
342
 
343
 
344
<script language=JavaScript><!--
345
if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>