diff --git a/phpgwapi/js/jquery/jqplot/README.txt b/phpgwapi/js/jquery/jqplot/README.txt
index 2b2b09ad04..4932a00c6c 100644
--- a/phpgwapi/js/jquery/jqplot/README.txt
+++ b/phpgwapi/js/jquery/jqplot/README.txt
@@ -2,7 +2,7 @@ Title: jqPlot Readme
Pure JavaScript plotting plugin for jQuery.
-To learn how to use jqPlot, start with the Basic Unsage Instructions below. Then read the
+To learn how to use jqPlot, start with the Basic Usage Instructions below. Then read the
usage.txt and jqPlotOptions.txt files included with the distribution.
The jqPlot home page is at
Pure JavaScript plotting plugin for jQuery.
jqPlot Charts | Pure JavaScript plotting plugin for jQuery. |
Version | 1.0.0b2_r792 |
Copyright & License | Copyright © 2009-2011 Chris Leonello jqPlot is currently available for use in all personal or commercial projects under both the MIT and GPL version 2.0 licenses. |
Introduction | jqPlot requires jQuery (1.4+ required for certain features). |
Usage | See jqPlot Usage |
Available Options | See jqPlot Options for a list of options available thorugh the options object (not complete yet!) |
Options Usage | See Options Tutorial |
Changes | See Change Log |
$.jqplot | jQuery function called by the user to create a plot. |
Hooks | |
jqPlot Pugin Hooks | |
Axis | An individual axis object. |
Properties | Axes options are specified within an axes object at the top level of the plot options like so: |
show | Wether to display the axis on the graph. |
tickRenderer | A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer. |
tickOptions | Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options. |
labelRenderer | A class of a rendering engine for creating an axis label. |
labelOptions | Options passed to the label renderer. |
label | Label for the axis |
showLabel | true to show the axis label. |
min | minimum value of the axis (in data units, not pixels). |
max | maximum value of the axis (in data units, not pixels). |
autoscale | Autoscale the axis min and max values to provide sensible tick spacing. |
pad | Padding to extend the range above and below the data bounds. |
padMax | Padding to extend the range above data bounds. |
padMin | Padding to extend the range below data bounds. |
ticks | 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis. |
numberTicks | Desired number of ticks. |
tickInterval | number of units between ticks. |
renderer | A class of a rendering engine that handles tick generation, scaling input data to pixel grid units and drawing the axis element. |
rendererOptions | renderer specific options. |
showTicks | Wether to show the ticks (both marks and labels) or not. |
showTickMarks | Wether to show the tick marks (line crossing grid) or not. |
showMinorTicks | Wether or not to show minor ticks. |
useSeriesColor | Use the color of the first series associated with this axis for the tick marks and line bordering this axis. |
borderWidth | width of line stroked at the border of the axis. |
borderColor | color of the border adjacent to the axis. |
syncTicks | true to try and synchronize tick spacing across multiple axes so that ticks and grid lines line up. |
tickSpacing | Approximate pixel spacing between ticks on graph. |
Legend | Legend object. |
Properties | |
show | Wether to display the legend on the graph. |
location | Placement of the legend. |
labels | Array of labels to use. |
showLabels | true to show the label text on the legend. |
showSwatch | true to show the color swatches on the legend. |
placement | “insideGrid” places legend inside the grid area of the plot. |
xoffset | DEPRECATED. |
yoffset | DEPRECATED. |
border | css spec for the border around the legend box. |
background | css spec for the background of the legend box. |
textColor | css color spec for the legend text. |
fontFamily | css font-family spec for the legend text. |
fontSize | css font-size spec for the legend text. |
rowSpacing | css padding-top spec for the rows in the legend. |
rendererOptions | renderer specific options passed to the renderer. |
predraw | Wether to draw the legend before the series or not. |
marginTop | CSS margin for the legend DOM element. |
marginRight | CSS margin for the legend DOM element. |
marginBottom | CSS margin for the legend DOM element. |
marginLeft | CSS margin for the legend DOM element. |
Title | Plot Title object. |
Properties | |
text | text of the title; |
show | wether or not to show the title |
fontFamily | css font-family spec for the text. |
fontSize | css font-size spec for the text. |
textAlign | css text-align spec for the text. |
textColor | css color spec for the text. |
renderer | A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer. |
rendererOptions | renderer specific options passed to the renderer. |
Series | An individual data series object. |
Properties | Properties will be assigned from a series array at the top level of the options. |
show | wether or not to draw the series. |
xaxis | which x axis to use with this series, either ‘xaxis’ or ‘x2axis’. |
yaxis | which y axis to use with this series, either ‘yaxis’ or ‘y2axis’. |
renderer | A class of a renderer which will draw the series, see $.jqplot.LineRenderer. |
rendererOptions | Options to pass on to the renderer. |
label | Line label to use in the legend. |
showLabel | true to show label for this series in the legend. |
color | css color spec for the series |
lineWidth | width of the line in pixels. |
lineJoin | Canvas lineJoin style between segments of series. |
lineCap | Canvas lineCap style at ends of line. |
shadow | wether or not to draw a shadow on the line |
shadowAngle | Shadow angle in degrees |
shadowOffset | Shadow offset from line in pixels |
shadowDepth | Number of times shadow is stroked, each stroke offset shadowOffset from the last. |
shadowAlpha | Alpha channel transparency of shadow. |
breakOnNull | Wether line segments should be be broken at null value. |
markerRenderer | A class of a renderer which will draw marker (e.g. |
markerOptions | renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer. |
showLine | wether to actually draw the line or not. |
showMarker | wether or not to show the markers at the data points. |
index | 0 based index of this series in the plot series array. |
fill | true or false, wether to fill under lines or in bars. |
fillColor | CSS color spec to use for fill under line. |
fillAlpha | Alpha transparency to apply to the fill under the line. |
fillAndStroke | If true will stroke the line (with color this.color) as well as fill under it. |
disableStack | true to not stack this series with other series in the plot. |
neighborThreshold | how close or far (in pixels) the cursor must be from a point marker to detect the point. |
fillToZero | true will force bar and filled series to fill toward zero on the fill Axis. |
fillToValue | fill a filled series to this value on the fill axis. |
fillAxis | Either ‘x’ or ‘y’. |
useNegativeColors | true to color negative values differently in filled and bar charts. |
Grid | Object representing the grid on which the plot is drawn. |
Properties | |
drawGridlines | wether to draw the gridlines on the plot. |
gridLineColor | color of the grid lines. |
gridLineWidth | width of the grid lines. |
background | css spec for the background color. |
borderColor | css spec for the color of the grid border. |
borderWidth | width of the border in pixels. |
drawBorder | True to draw border around grid. |
shadow | wether to show a shadow behind the grid. |
shadowAngle | shadow angle in degrees |
shadowOffset | Offset of each shadow stroke from the border in pixels |
shadowWidth | width of the stoke for the shadow |
shadowDepth | Number of times shadow is stroked, each stroke offset shadowOffset from the last. |
shadowColor | an optional css color spec for the shadow in ‘rgba(n, n, n, n)’ form |
shadowAlpha | Alpha channel transparency of shadow. |
renderer | Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer. |
rendererOptions | Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer. |
jqPlot | Plot object returned by call to $.jqplot. |
Properties | These properties are specified at the top of the options object like so: |
data | user’s data. |
axesDefaults | default options that will be applied to all axes. |
seriesDefaults | default options that will be applied to all series. |
series | Array of series object options. |
axes | up to 4 axes are supported, each with it’s own options, See Axis for axis specific options. |
grid | See Grid for grid specific options. |
legend | see <$.jqplot.TableLegendRenderer> |
seriesColors | Ann array of CSS color specifications that will be applied, in order, to the series in the plot. |
sortData | false to not sort the data passed in by the user. |
fontSize | css spec for the font-size attribute. |
title | Title object. |
stackSeries | true or false, creates a stack or “mountain” plot. |
defaultAxisStart | 1-D data series are internally converted into 2-D [x,y] data point arrays by jqPlot. |
methods | |
init | sets the plot target, checks data and applies user options to plot. |
resetAxesScale | Reset the specified axes min, max, numberTicks and tickInterval properties to null or reset these properties on all axes if no list of axes is provided. |
reInitialize | reinitialize plot for replotting. |
destroy | Releases all resources occupied by the plot |
replot | Does a reinitialization of the plot followed by a redraw. |
redraw | Empties the plot target div and redraws the plot. |
draw | Draws all elements of the plot into the container. |
drawSeries | Redraws all or just one series on the plot. |
moveSeriesToFront | This method requires jQuery 1.4+ Moves the specified series canvas in front of all other series canvases. |
moveSeriesToBack | This method requires jQuery 1.4+ Moves the specified series canvas behind all other series canvases. |
restorePreviousSeriesOrder | This method requires jQuery 1.4+ Restore the series canvas order to its previous state. |
restoreOriginalSeriesOrder | This method requires jQuery 1.4+ Restore the series canvas order to its original order when the plot was created. |
Pure JavaScript plotting plugin for jQuery.
jqPlot Charts | Pure JavaScript plotting plugin for jQuery. |
Version | 1.0.0b2_r947 |
Copyright & License | Copyright © 2009-2011 Chris Leonello jqPlot is currently available for use in all personal or commercial projects under both the MIT and GPL version 2.0 licenses. |
Introduction | jqPlot requires jQuery (1.4+ required for certain features). |
Usage | See jqPlot Usage |
Available Options | See jqPlot Options for a list of options available thorugh the options object (not complete yet!) |
Options Usage | See Options Tutorial |
Changes | See Change Log |
$.jqplot | jQuery function called by the user to create a plot. |
Hooks | |
jqPlot Pugin Hooks | |
Axis | An individual axis object. |
Properties | Axes options are specified within an axes object at the top level of the plot options like so: |
show | Wether to display the axis on the graph. |
tickRenderer | A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer. |
tickOptions | Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options. |
labelRenderer | A class of a rendering engine for creating an axis label. |
labelOptions | Options passed to the label renderer. |
label | Label for the axis |
showLabel | true to show the axis label. |
min | minimum value of the axis (in data units, not pixels). |
max | maximum value of the axis (in data units, not pixels). |
autoscale | DEPRECATED the default scaling algorithm produces superior results. |
pad | Padding to extend the range above and below the data bounds. |
padMax | Padding to extend the range above data bounds. |
padMin | Padding to extend the range below data bounds. |
ticks | 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis. |
numberTicks | Desired number of ticks. |
tickInterval | number of units between ticks. |
renderer | A class of a rendering engine that handles tick generation, scaling input data to pixel grid units and drawing the axis element. |
rendererOptions | renderer specific options. |
showTicks | Wether to show the ticks (both marks and labels) or not. |
showTickMarks | Wether to show the tick marks (line crossing grid) or not. |
showMinorTicks | Wether or not to show minor ticks. |
drawMajorGridlines | True to draw gridlines for major axis ticks. |
drawMinorGridlines | True to draw gridlines for minor ticks. |
drawMajorTickMarks | True to draw tick marks for major axis ticks. |
drawMinorTickMarks | True to draw tick marks for minor ticks. |
useSeriesColor | Use the color of the first series associated with this axis for the tick marks and line bordering this axis. |
borderWidth | width of line stroked at the border of the axis. |
borderColor | color of the border adjacent to the axis. |
syncTicks | true to try and synchronize tick spacing across multiple axes so that ticks and grid lines line up. |
tickSpacing | Approximate pixel spacing between ticks on graph. |
Legend | Legend object. |
Properties | |
show | Wether to display the legend on the graph. |
location | Placement of the legend. |
labels | Array of labels to use. |
showLabels | true to show the label text on the legend. |
showSwatch | true to show the color swatches on the legend. |
placement | “insideGrid” places legend inside the grid area of the plot. |
xoffset | DEPRECATED. |
yoffset | DEPRECATED. |
border | css spec for the border around the legend box. |
background | css spec for the background of the legend box. |
textColor | css color spec for the legend text. |
fontFamily | css font-family spec for the legend text. |
fontSize | css font-size spec for the legend text. |
rowSpacing | css padding-top spec for the rows in the legend. |
rendererOptions | renderer specific options passed to the renderer. |
predraw | Wether to draw the legend before the series or not. |
marginTop | CSS margin for the legend DOM element. |
marginRight | CSS margin for the legend DOM element. |
marginBottom | CSS margin for the legend DOM element. |
marginLeft | CSS margin for the legend DOM element. |
escapeHtml | True to escape special characters with their html entity equivalents in legend text. |
Title | Plot Title object. |
Properties | |
text | text of the title; |
show | wether or not to show the title |
fontFamily | css font-family spec for the text. |
fontSize | css font-size spec for the text. |
textAlign | css text-align spec for the text. |
textColor | css color spec for the text. |
renderer | A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer. |
rendererOptions | renderer specific options passed to the renderer. |
escapeHtml | True to escape special characters with their html entity equivalents in title text. |
Series | An individual data series object. |
Properties | Properties will be assigned from a series array at the top level of the options. |
show | wether or not to draw the series. |
xaxis | which x axis to use with this series, either ‘xaxis’ or ‘x2axis’. |
yaxis | which y axis to use with this series, either ‘yaxis’ or ‘y2axis’. |
renderer | A class of a renderer which will draw the series, see $.jqplot.LineRenderer. |
rendererOptions | Options to pass on to the renderer. |
label | Line label to use in the legend. |
showLabel | true to show label for this series in the legend. |
color | css color spec for the series |
negativeColor | css color spec used for filled (area) plots that are filled to zero and the “useNegativeColors” option is true. |
lineWidth | width of the line in pixels. |
lineJoin | Canvas lineJoin style between segments of series. |
lineCap | Canvas lineCap style at ends of line. |
linePattern | line pattern ‘dashed’, ‘dotted’, ‘solid’, some combination of ‘-’ and ‘.’ |
shadowAngle | Shadow angle in degrees |
shadowOffset | Shadow offset from line in pixels |
shadowDepth | Number of times shadow is stroked, each stroke offset shadowOffset from the last. |
shadowAlpha | Alpha channel transparency of shadow. |
breakOnNull | Wether line segments should be be broken at null value. |
markerRenderer | A class of a renderer which will draw marker (e.g. |
markerOptions | renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer. |
showLine | wether to actually draw the line or not. |
showMarker | wether or not to show the markers at the data points. |
index | 0 based index of this series in the plot series array. |
fill | true or false, wether to fill under lines or in bars. |
fillColor | CSS color spec to use for fill under line. |
fillAlpha | Alpha transparency to apply to the fill under the line. |
fillAndStroke | If true will stroke the line (with color this.color) as well as fill under it. |
disableStack | true to not stack this series with other series in the plot. |
neighborThreshold | how close or far (in pixels) the cursor must be from a point marker to detect the point. |
fillToZero | true will force bar and filled series to fill toward zero on the fill Axis. |
fillToValue | fill a filled series to this value on the fill axis. |
fillAxis | Either ‘x’ or ‘y’. |
useNegativeColors | true to color negative values differently in filled and bar charts. |
Grid | Object representing the grid on which the plot is drawn. |
Properties | |
drawGridlines | wether to draw the gridlines on the plot. |
gridLineColor | color of the grid lines. |
gridLineWidth | width of the grid lines. |
background | css spec for the background color. |
borderColor | css spec for the color of the grid border. |
borderWidth | width of the border in pixels. |
drawBorder | True to draw border around grid. |
shadow | wether to show a shadow behind the grid. |
shadowAngle | shadow angle in degrees |
shadowOffset | Offset of each shadow stroke from the border in pixels |
shadowWidth | width of the stoke for the shadow |
shadowDepth | Number of times shadow is stroked, each stroke offset shadowOffset from the last. |
shadowColor | an optional css color spec for the shadow in ‘rgba(n, n, n, n)’ form |
shadowAlpha | Alpha channel transparency of shadow. |
renderer | Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer. |
rendererOptions | Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer. |
jqPlot | Plot object returned by call to $.jqplot. |
Properties | These properties are specified at the top of the options object like so: |
data | user’s data. |
dataRenderer | A callable which can be used to preprocess data passed into the plot. |
dataRendererOptions | Options that will be passed to the dataRenderer. |
noDataIndicator | Options to set up a mock plot with a data loading indicator if no data is specified. |
axesDefaults | default options that will be applied to all axes. |
seriesDefaults | default options that will be applied to all series. |
series | Array of series object options. |
axes | up to 4 axes are supported, each with it’s own options, See Axis for axis specific options. |
grid | See Grid for grid specific options. |
legend | see <$.jqplot.TableLegendRenderer> |
seriesColors | Ann array of CSS color specifications that will be applied, in order, to the series in the plot. |
sortData | false to not sort the data passed in by the user. |
fontSize | css spec for the font-size attribute. |
title | Title object. |
stackSeries | true or false, creates a stack or “mountain” plot. |
defaultAxisStart | 1-D data series are internally converted into 2-D [x,y] data point arrays by jqPlot. |
methods | |
init | sets the plot target, checks data and applies user options to plot. |
resetAxesScale | Reset the specified axes min, max, numberTicks and tickInterval properties to null or reset these properties on all axes if no list of axes is provided. |
reInitialize | reinitialize plot for replotting. |
destroy | Releases all resources occupied by the plot |
replot | Does a reinitialization of the plot followed by a redraw. |
redraw | Empties the plot target div and redraws the plot. |
draw | Draws all elements of the plot into the container. |
drawSeries | Redraws all or just one series on the plot. |
moveSeriesToFront | This method requires jQuery 1.4+ Moves the specified series canvas in front of all other series canvases. |
moveSeriesToBack | This method requires jQuery 1.4+ Moves the specified series canvas behind all other series canvases. |
restorePreviousSeriesOrder | This method requires jQuery 1.4+ Restore the series canvas order to its previous state. |
restoreOriginalSeriesOrder | This method requires jQuery 1.4+ Restore the series canvas order to its original order when the plot was created. |
Copyright © 2009-2011 Chris Leonello jqPlot is currently available for use in all personal or commercial projects under both the MIT and GPL version 2.0 licenses. This means that you can choose the license that best suits your project and use it accordingly.
See GPL Version 2 and MIT License contained within this distribution for further information.
The author would appreciate an email letting him know of any substantial use of jqPlot. You can reach the author at: chris at jqplot dot com or see http://www.jqplot.com/info.php. This is, of course, not required.
If you are feeling kind and generous, consider supporting the project by making a donation at: http://www.jqplot.com/donate.php.
version 2007.04.27 author Ash Searle http://hexmen.com/blog/2007/03/printf-sprintf/ http://hexmen.com/js/sprintf.js The author (Ash Searle) has placed this code in the public domain: “This code is unrestricted: you are free to use it however you like.”
Copyright © 2009-2011 Chris Leonello jqPlot is currently available for use in all personal or commercial projects under both the MIT and GPL version 2.0 licenses. This means that you can choose the license that best suits your project and use it accordingly.
See GPL Version 2 and MIT License contained within this distribution for further information.
The author would appreciate an email letting him know of any substantial use of jqPlot. You can reach the author at: chris at jqplot dot com or see http://www.jqplot.com/info.php. This is, of course, not required.
If you are feeling kind and generous, consider supporting the project by making a donation at: http://www.jqplot.com/donate.php.
version 2007.04.27 author Ash Searle http://hexmen.com/blog/2007/03/printf-sprintf/ http://hexmen.com/js/sprintf.js The author (Ash Searle) has placed this code in the public domain: “This code is unrestricted: you are free to use it however you like.”
jqPlot requires jQuery (1.4+ required for certain features). jQuery 1.4.2 is included in the distribution. To use jqPlot include jQuery, the jqPlot jQuery plugin, the jqPlot css file and optionally the excanvas script for IE support in your web page:
<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="excanvas.js"></script><![endif]--> <script language="javascript" type="text/javascript" src="jquery-1.4.4.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.jqplot.min.js"></script> -<link rel="stylesheet" type="text/css" href="jquery.jqplot.css" />
jqPlot can be customized by overriding the defaults of any of the objects which make up the plot. The general usage of jqplot is:
chart = $.jqplot('targetElemId', [dataArray,...], {optionsObject});
The options available to jqplot are detailed in jqPlot Options in the jqPlotOptions.txt file.
An actual call to $.jqplot() may look like the examples below:
chart = $.jqplot('chartdiv', [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]);
or
dataArray = [34,12,43,55,77]; +<link rel="stylesheet" type="text/css" href="jquery.jqplot.css" />
jqPlot can be customized by overriding the defaults of any of the objects which make up the plot. The general usage of jqplot is:
chart = $.jqplot('targetElemId', [dataArray,...], {optionsObject});
The options available to jqplot are detailed in jqPlot Options in the jqPlotOptions.txt file.
An actual call to $.jqplot() may look like the examples below:
chart = $.jqplot('chartdiv', [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]);
or
dataArray = [34,12,43,55,77]; chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis:{min:20, max:100}}});
For more inforrmation, see jqPlot Usage.
See jqPlot Usage
See jqPlot Options for a list of options available thorugh the options object (not complete yet!)
See jqPlot Options for a list of options available thorugh the options object (not complete yet!)
See Options Tutorial
See Options Tutorial
See Change Log
An individual axis object. Cannot be instantiated directly, but created by the Plot oject. Axis properties can be set or overriden by the options passed in from the user.
Properties | Axes options are specified within an axes object at the top level of the plot options like so: |
show | Wether to display the axis on the graph. |
tickRenderer | A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer. |
tickOptions | Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options. |
labelRenderer | A class of a rendering engine for creating an axis label. |
labelOptions | Options passed to the label renderer. |
label | Label for the axis |
showLabel | true to show the axis label. |
min | minimum value of the axis (in data units, not pixels). |
max | maximum value of the axis (in data units, not pixels). |
autoscale | Autoscale the axis min and max values to provide sensible tick spacing. |
pad | Padding to extend the range above and below the data bounds. |
padMax | Padding to extend the range above data bounds. |
padMin | Padding to extend the range below data bounds. |
ticks | 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis. |
numberTicks | Desired number of ticks. |
tickInterval | number of units between ticks. |
renderer | A class of a rendering engine that handles tick generation, scaling input data to pixel grid units and drawing the axis element. |
rendererOptions | renderer specific options. |
showTicks | Wether to show the ticks (both marks and labels) or not. |
showTickMarks | Wether to show the tick marks (line crossing grid) or not. |
showMinorTicks | Wether or not to show minor ticks. |
useSeriesColor | Use the color of the first series associated with this axis for the tick marks and line bordering this axis. |
borderWidth | width of line stroked at the border of the axis. |
borderColor | color of the border adjacent to the axis. |
syncTicks | true to try and synchronize tick spacing across multiple axes so that ticks and grid lines line up. |
tickSpacing | Approximate pixel spacing between ticks on graph. |
An individual axis object. Cannot be instantiated directly, but created by the Plot oject. Axis properties can be set or overriden by the options passed in from the user.
Properties | Axes options are specified within an axes object at the top level of the plot options like so: |
show | Wether to display the axis on the graph. |
tickRenderer | A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer. |
tickOptions | Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options. |
labelRenderer | A class of a rendering engine for creating an axis label. |
labelOptions | Options passed to the label renderer. |
label | Label for the axis |
showLabel | true to show the axis label. |
min | minimum value of the axis (in data units, not pixels). |
max | maximum value of the axis (in data units, not pixels). |
autoscale | DEPRECATED the default scaling algorithm produces superior results. |
pad | Padding to extend the range above and below the data bounds. |
padMax | Padding to extend the range above data bounds. |
padMin | Padding to extend the range below data bounds. |
ticks | 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis. |
numberTicks | Desired number of ticks. |
tickInterval | number of units between ticks. |
renderer | A class of a rendering engine that handles tick generation, scaling input data to pixel grid units and drawing the axis element. |
rendererOptions | renderer specific options. |
showTicks | Wether to show the ticks (both marks and labels) or not. |
showTickMarks | Wether to show the tick marks (line crossing grid) or not. |
showMinorTicks | Wether or not to show minor ticks. |
drawMajorGridlines | True to draw gridlines for major axis ticks. |
drawMinorGridlines | True to draw gridlines for minor ticks. |
drawMajorTickMarks | True to draw tick marks for major axis ticks. |
drawMinorTickMarks | True to draw tick marks for minor ticks. |
useSeriesColor | Use the color of the first series associated with this axis for the tick marks and line bordering this axis. |
borderWidth | width of line stroked at the border of the axis. |
borderColor | color of the border adjacent to the axis. |
syncTicks | true to try and synchronize tick spacing across multiple axes so that ticks and grid lines line up. |
tickSpacing | Approximate pixel spacing between ticks on graph. |
Axes options are specified within an axes object at the top level of the plot options like so:
{ axes: { @@ -50,9 +50,9 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis -+tickRenderer
this.tickRenderer = $.jqplot.AxisTickRenderer A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.
-tickRenderer
this.tickRenderer = $.jqplot.AxisTickRenderer A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.
+tickOptions
this.tickOptions = {} Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options.
tickOptions
this.tickOptions = {} Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options.
@@ -62,11 +62,11 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis - + - + -+autoscale
this.autoscale = false Autoscale the axis min and max values to provide sensible tick spacing. If axis min or max are set, autoscale will be turned off. The numberTicks, tickInterval and pad options do work with autoscale, although tickInterval has not been tested yet. padMin and padMax do nothing when autoscale is on.
@@ -82,13 +82,21 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis-+rendererOptions
this.rendererOptions = {} renderer specific options. See $.jqplot.LinearAxisRenderer for options.
rendererOptions
this.rendererOptions = {} renderer specific options. See $.jqplot.LinearAxisRenderer for options.
-+showMinorTicks
this.showMinorTicks = true Wether or not to show minor ticks. This is renderer dependent. The default $.jqplot.LinearAxisRenderer does not have minor ticks.
+ + + + + + + +@@ -100,7 +108,7 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis-+Legend
Legend object. Cannot be instantiated directly, but created by the Plot oject. Legend properties can be set or overriden by the options passed in from the user.
Summary
Properties show Wether to display the legend on the graph. location Placement of the legend. labels Array of labels to use. showLabels true to show the label text on the legend. showSwatch true to show the color swatches on the legend. placement “insideGrid” places legend inside the grid area of the plot. xoffset DEPRECATED. yoffset DEPRECATED. border css spec for the border around the legend box. background css spec for the background of the legend box. textColor css color spec for the legend text. fontFamily css font-family spec for the legend text. fontSize css font-size spec for the legend text. rowSpacing css padding-top spec for the rows in the legend. rendererOptions renderer specific options passed to the renderer. predraw Wether to draw the legend before the series or not. marginTop CSS margin for the legend DOM element. marginRight CSS margin for the legend DOM element. marginBottom CSS margin for the legend DOM element. marginLeft CSS margin for the legend DOM element. @@ -144,7 +152,9 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxisLegend
Legend object. Cannot be instantiated directly, but created by the Plot oject. Legend properties can be set or overriden by the options passed in from the user.
Summary
Properties show Wether to display the legend on the graph. location Placement of the legend. labels Array of labels to use. showLabels true to show the label text on the legend. showSwatch true to show the color swatches on the legend. placement “insideGrid” places legend inside the grid area of the plot. xoffset DEPRECATED. yoffset DEPRECATED. border css spec for the border around the legend box. background css spec for the background of the legend box. textColor css color spec for the legend text. fontFamily css font-family spec for the legend text. fontSize css font-size spec for the legend text. rowSpacing css padding-top spec for the rows in the legend. rendererOptions renderer specific options passed to the renderer. predraw Wether to draw the legend before the series or not. marginTop CSS margin for the legend DOM element. marginRight CSS margin for the legend DOM element. marginBottom CSS margin for the legend DOM element. marginLeft CSS margin for the legend DOM element. escapeHtml True to escape special characters with their html entity equivalents in legend text. -+Title
Plot Title object. Cannot be instantiated directly, but created by the Plot oject. Title properties can be set or overriden by the options passed in from the user.
Parameters
text text of the title. Summary
Properties text text of the title; show wether or not to show the title fontFamily css font-family spec for the text. fontSize css font-size spec for the text. textAlign css text-align spec for the text. textColor css color spec for the text. renderer A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer. rendererOptions renderer specific options passed to the renderer. + +@@ -160,11 +170,13 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis -Title
Plot Title object. Cannot be instantiated directly, but created by the Plot oject. Title properties can be set or overriden by the options passed in from the user.
Parameters
text text of the title. Summary
Properties text text of the title; show wether or not to show the title fontFamily css font-family spec for the text. fontSize css font-size spec for the text. textAlign css text-align spec for the text. textColor css color spec for the text. renderer A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer. rendererOptions renderer specific options passed to the renderer. escapeHtml True to escape special characters with their html entity equivalents in title text. +renderer
this.renderer = $.jqplot.DivTitleRenderer A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer.
-renderer
this.renderer = $.jqplot.DivTitleRenderer A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer.
+Series
An individual data series object. Cannot be instantiated directly, but created by the Plot oject. Series properties can be set or overriden by the options passed in from the user.
Summary
Properties Properties will be assigned from a series array at the top level of the options. show wether or not to draw the series. xaxis which x axis to use with this series, either ‘xaxis’ or ‘x2axis’. yaxis which y axis to use with this series, either ‘yaxis’ or ‘y2axis’. renderer A class of a renderer which will draw the series, see $.jqplot.LineRenderer. rendererOptions Options to pass on to the renderer. label Line label to use in the legend. showLabel true to show label for this series in the legend. color css color spec for the series lineWidth width of the line in pixels. lineJoin Canvas lineJoin style between segments of series. lineCap Canvas lineCap style at ends of line. shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. breakOnNull Wether line segments should be be broken at null value. markerRenderer A class of a renderer which will draw marker (e.g. markerOptions renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer. showLine wether to actually draw the line or not. showMarker wether or not to show the markers at the data points. index 0 based index of this series in the plot series array. fill true or false, wether to fill under lines or in bars. fillColor CSS color spec to use for fill under line. fillAlpha Alpha transparency to apply to the fill under the line. fillAndStroke If true will stroke the line (with color this.color) as well as fill under it. disableStack true to not stack this series with other series in the plot. neighborThreshold how close or far (in pixels) the cursor must be from a point marker to detect the point. fillToZero true will force bar and filled series to fill toward zero on the fill Axis. fillToValue fill a filled series to this value on the fill axis. fillAxis Either ‘x’ or ‘y’. useNegativeColors true to color negative values differently in filled and bar charts. + +Series
An individual data series object. Cannot be instantiated directly, but created by the Plot oject. Series properties can be set or overriden by the options passed in from the user.
Summary
Properties Properties will be assigned from a series array at the top level of the options. show wether or not to draw the series. xaxis which x axis to use with this series, either ‘xaxis’ or ‘x2axis’. yaxis which y axis to use with this series, either ‘yaxis’ or ‘y2axis’. renderer A class of a renderer which will draw the series, see $.jqplot.LineRenderer. rendererOptions Options to pass on to the renderer. label Line label to use in the legend. showLabel true to show label for this series in the legend. color css color spec for the series negativeColor css color spec used for filled (area) plots that are filled to zero and the “useNegativeColors” option is true. lineWidth width of the line in pixels. lineJoin Canvas lineJoin style between segments of series. lineCap Canvas lineCap style at ends of line. linePattern line pattern ‘dashed’, ‘dotted’, ‘solid’, some combination of ‘-’ and ‘.’ shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. breakOnNull Wether line segments should be be broken at null value. markerRenderer A class of a renderer which will draw marker (e.g. markerOptions renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer. showLine wether to actually draw the line or not. showMarker wether or not to show the markers at the data points. index 0 based index of this series in the plot series array. fill true or false, wether to fill under lines or in bars. fillColor CSS color spec to use for fill under line. fillAlpha Alpha transparency to apply to the fill under the line. fillAndStroke If true will stroke the line (with color this.color) as well as fill under it. disableStack true to not stack this series with other series in the plot. neighborThreshold how close or far (in pixels) the cursor must be from a point marker to detect the point. fillToZero true will force bar and filled series to fill toward zero on the fill Axis. fillToValue fill a filled series to this value on the fill axis. fillAxis Either ‘x’ or ‘y’. useNegativeColors true to color negative values differently in filled and bar charts. Properties
Properties will be assigned from a series array at the top level of the options. If you had two series and wanted to change the color and line width of the first and set the second to use the secondary y axis with no shadow and supply custom labels for each:
{ series:[ @@ -179,7 +191,7 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis -+renderer
this.renderer = $.jqplot.LineRenderer A class of a renderer which will draw the series, see $.jqplot.LineRenderer.
@@ -189,13 +201,15 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis +renderer
this.renderer = $.jqplot.LineRenderer A class of a renderer which will draw the series, see $.jqplot.LineRenderer.
+- +@@ -207,9 +221,9 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis-+markerRenderer
this.markerRenderer = $.jqplot.MarkerRenderer A class of a renderer which will draw marker (e.g. circle, square, ...) at the data points, see $.jqplot.MarkerRenderer.
-markerRenderer
this.markerRenderer = $.jqplot.MarkerRenderer A class of a renderer which will draw marker (e.g. circle, square, ...) at the data points, see $.jqplot.MarkerRenderer.
+markerOptions
this.markerOptions = {} renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer.
markerOptions
this.markerOptions = {} renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer.
@@ -237,7 +251,7 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis-+Grid
Object representing the grid on which the plot is drawn. The grid in this context is the area bounded by the axes, the area which will contain the series. Note, the series are drawn on their own canvas. The Grid object cannot be instantiated directly, but is created by the Plot oject. Grid properties can be set or overriden by the options passed in from the user.
Summary
Properties drawGridlines wether to draw the gridlines on the plot. gridLineColor color of the grid lines. gridLineWidth width of the grid lines. background css spec for the background color. borderColor css spec for the color of the grid border. borderWidth width of the border in pixels. drawBorder True to draw border around grid. shadow wether to show a shadow behind the grid. shadowAngle shadow angle in degrees shadowOffset Offset of each shadow stroke from the border in pixels shadowWidth width of the stoke for the shadow shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowColor an optional css color spec for the shadow in ‘rgba(n, n, n, n)’ form shadowAlpha Alpha channel transparency of shadow. renderer Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer. rendererOptions Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer. @@ -269,11 +283,11 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis -Grid
Object representing the grid on which the plot is drawn. The grid in this context is the area bounded by the axes, the area which will contain the series. Note, the series are drawn on their own canvas. The Grid object cannot be instantiated directly, but is created by the Plot oject. Grid properties can be set or overriden by the options passed in from the user.
Summary
Properties drawGridlines wether to draw the gridlines on the plot. gridLineColor color of the grid lines. gridLineWidth width of the grid lines. background css spec for the background color. borderColor css spec for the color of the grid border. borderWidth width of the border in pixels. drawBorder True to draw border around grid. shadow wether to show a shadow behind the grid. shadowAngle shadow angle in degrees shadowOffset Offset of each shadow stroke from the border in pixels shadowWidth width of the stoke for the shadow shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowColor an optional css color spec for the shadow in ‘rgba(n, n, n, n)’ form shadowAlpha Alpha channel transparency of shadow. renderer Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer. rendererOptions Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer. +renderer
this.renderer = $.jqplot.CanvasGridRenderer Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer.
-renderer
this.renderer = $.jqplot.CanvasGridRenderer Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer.
+rendererOptions
this.rendererOptions = {} Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer.
-rendererOptions
this.rendererOptions = {} Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer.
+jqPlot
Plot object returned by call to $.jqplot. Handles parsing user options, creating sub objects (Axes, legend, title, series) and rendering the plot.
Summary
Properties These properties are specified at the top of the options object like so: data user’s data. axesDefaults default options that will be applied to all axes. seriesDefaults default options that will be applied to all series. series Array of series object options. axes up to 4 axes are supported, each with it’s own options, See Axis for axis specific options. grid See Grid for grid specific options. legend see <$.jqplot.TableLegendRenderer> seriesColors Ann array of CSS color specifications that will be applied, in order, to the series in the plot. sortData false to not sort the data passed in by the user. fontSize css spec for the font-size attribute. title Title object. stackSeries true or false, creates a stack or “mountain” plot. defaultAxisStart 1-D data series are internally converted into 2-D [x,y] data point arrays by jqPlot. methods init sets the plot target, checks data and applies user options to plot. resetAxesScale Reset the specified axes min, max, numberTicks and tickInterval properties to null or reset these properties on all axes if no list of axes is provided. reInitialize reinitialize plot for replotting. destroy Releases all resources occupied by the plot replot Does a reinitialization of the plot followed by a redraw. redraw Empties the plot target div and redraws the plot. draw Draws all elements of the plot into the container. drawSeries Redraws all or just one series on the plot. moveSeriesToFront This method requires jQuery 1.4+ Moves the specified series canvas in front of all other series canvases. moveSeriesToBack This method requires jQuery 1.4+ Moves the specified series canvas behind all other series canvases. restorePreviousSeriesOrder This method requires jQuery 1.4+ Restore the series canvas order to its previous state. restoreOriginalSeriesOrder This method requires jQuery 1.4+ Restore the series canvas order to its original order when the plot was created. jqPlot
Plot object returned by call to $.jqplot. Handles parsing user options, creating sub objects (Axes, legend, title, series) and rendering the plot.
Summary
Properties These properties are specified at the top of the options object like so: data user’s data. dataRenderer A callable which can be used to preprocess data passed into the plot. dataRendererOptions Options that will be passed to the dataRenderer. noDataIndicator Options to set up a mock plot with a data loading indicator if no data is specified. axesDefaults default options that will be applied to all axes. seriesDefaults default options that will be applied to all series. series Array of series object options. axes up to 4 axes are supported, each with it’s own options, See Axis for axis specific options. grid See Grid for grid specific options. legend see <$.jqplot.TableLegendRenderer> seriesColors Ann array of CSS color specifications that will be applied, in order, to the series in the plot. sortData false to not sort the data passed in by the user. fontSize css spec for the font-size attribute. title Title object. stackSeries true or false, creates a stack or “mountain” plot. defaultAxisStart 1-D data series are internally converted into 2-D [x,y] data point arrays by jqPlot. methods init sets the plot target, checks data and applies user options to plot. resetAxesScale Reset the specified axes min, max, numberTicks and tickInterval properties to null or reset these properties on all axes if no list of axes is provided. reInitialize reinitialize plot for replotting. destroy Releases all resources occupied by the plot replot Does a reinitialization of the plot followed by a redraw. redraw Empties the plot target div and redraws the plot. draw Draws all elements of the plot into the container. drawSeries Redraws all or just one series on the plot. moveSeriesToFront This method requires jQuery 1.4+ Moves the specified series canvas in front of all other series canvases. moveSeriesToBack This method requires jQuery 1.4+ Moves the specified series canvas behind all other series canvases. restorePreviousSeriesOrder This method requires jQuery 1.4+ Restore the series canvas order to its previous state. restoreOriginalSeriesOrder This method requires jQuery 1.4+ Restore the series canvas order to its original order when the plot was created. -Properties
- + -These properties are specified at the top of the options object like so:
{ axesDefaults:{min:0}, @@ -283,15 +297,21 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis-data
this.data = [] user’s data. Data should NOT be specified in the options object, but be passed in as the second argument to the $.jqplot() function. The data property is described here soley for reference. The data should be in the form of an array of 2D or 1D arrays like
[ [[x1, y1], [x2, y2],...], [y1, y2, ...] ].+axesDefaults
default options that will be applied to all axes. see Axis for axes options.
-+seriesDefaults
seriesDefaults: {}, series:[] } default options that will be applied to all series. see Series for series options.
-+series
this.series = [] Array of series object options. see Series for series specific options.
-+axes
this.axes = {xaxis: new Axis('xaxis'), yaxis: new Axis('yaxis'), x2axis: new Axis('x2axis'), y2axis: new Axis('y2axis'), y3axis: new Axis('y3axis'), y4axis: new Axis('y4axis'), y5axis: new Axis('y5axis'), y6axis: new Axis('y6axis'), y7axis: new Axis('y7axis'), y8axis: new Axis('y8axis'), y9axis: new Axis('y9axis')} up to 4 axes are supported, each with it’s own options, See Axis for axis specific options.
-axesDefaults
default options that will be applied to all axes. see Axis for axes options.
+grid
this.grid = new Grid() See Grid for grid specific options.
+ +seriesDefaults
seriesDefaults: {}, series:[] } default options that will be applied to all series. see Series for series options.
+ +series
this.series = [] Array of series object options. see Series for series specific options.
+ +axes
this.axes = {xaxis: new Axis('xaxis'), yaxis: new Axis('yaxis'), x2axis: new Axis('x2axis'), y2axis: new Axis('y2axis'), y3axis: new Axis('y3axis'), y4axis: new Axis('y4axis'), y5axis: new Axis('y5axis'), y6axis: new Axis('y6axis'), y7axis: new Axis('y7axis'), y8axis: new Axis('y8axis'), y9axis: new Axis('y9axis'), yMidAxis: new Axis('yMidAxis')} up to 4 axes are supported, each with it’s own options, See Axis for axis specific options.
@@ -301,7 +321,7 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxis -grid
this.grid = new Grid() See Grid for grid specific options.
+title
this.title = new Title() Title object. See Title for specific options. As a shortcut, you can specify the title option as just a string like: title: ‘My Plot’ and this will create a new title object with the specified text.
@@ -336,10 +356,10 @@ chart = $.jqplot('targetElemId', [dataArray, ...], {title:'My Plot', axes:{yaxistitle
this.title = new Title() Title object. See Title for specific options. As a shortcut, you can specify the title option as just a string like: title: ‘My Plot’ and this will create a new title object with the specified text.
@@ -347,7 +367,7 @@ HideAllBut([4, 2], 6);// -->API DocumentationThis document is out of date.This document will help you understand how jqPlot’s options relate to the API documentation and the jqPlot object itself.Wether to display the axis on the graph.
this.show = false A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.
this.tickRenderer = $.jqplot.AxisTickRenderer A “tick” object showing the value of a tick/gridline on the plot.Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options.
this.tickOptions = {} A class of a rendering engine for creating an axis label.
this.labelRenderer = $.jqplot.AxisLabelRenderer Options passed to the label renderer.
this.labelOptions = {} Label for the axis
this.label = null true to show the axis label.
this.showLabel = true minimum value of the axis (in data units, not pixels).
this.min=null maximum value of the axis (in data units, not pixels).
this.max=null Autoscale the axis min and max values to provide sensible tick spacing.
this.autoscale = false Padding to extend the range above and below the data bounds.
this.pad = 1.2 Padding to extend the range above data bounds.
this.padMax = null Padding to extend the range below data bounds.
this.padMin = null 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis.
this.ticks = [] Desired number of ticks.
this.numberTicks number of units between ticks.
this.tickInterval A class of a rendering engine that handles tick generation, scaling input data to pixel grid units and drawing the axis element.
this.renderer = $.jqplot.LinearAxisRenderer renderer specific options.
this.rendererOptions = {} Wether to show the ticks (both marks and labels) or not.
this.showTicks = true Wether to show the tick marks (line crossing grid) or not.
this.showTickMarks = true Wether or not to show minor ticks.
this.showMinorTicks = true Use the color of the first series associated with this axis for the tick marks and line bordering this axis.
this.useSeriesColor = false width of line stroked at the border of the axis.
this.borderWidth = null color of the border adjacent to the axis.
this.borderColor = null true to try and synchronize tick spacing across multiple axes so that ticks and grid lines line up.
this.syncTicks = null Approximate pixel spacing between ticks on graph.
this.tickSpacing = 75 Wether to display the legend on the graph.
this.show = false Placement of the legend.
this.location = 'ne' Array of labels to use.
this.labels = [] true to show the label text on the legend.
this.showLabels = true true to show the color swatches on the legend.
this.showSwatches = true “insideGrid” places legend inside the grid area of the plot.
this.placement = "insideGrid" DEPRECATED.
this.xoffset = 0 DEPRECATED.
this.yoffset = 0 css spec for the border around the legend box.
this.border css spec for the background of the legend box.
this.background css color spec for the legend text.
this.textColor css font-family spec for the legend text.
this.fontFamily css font-size spec for the legend text.
this.fontSize css padding-top spec for the rows in the legend.
this.rowSpacing = '0.5em' renderer specific options passed to the renderer.
this.rendererOptions = {} CSS margin for the legend DOM element.
this.marginTop = null CSS margin for the legend DOM element.
this.marginRight = null CSS margin for the legend DOM element.
this.marginBottom = null CSS margin for the legend DOM element.
this.marginLeft = null text of the title;
this.text = text wether or not to show the title
this.show = true css font-family spec for the text.
this.fontFamily css font-size spec for the text.
this.fontSize css text-align spec for the text.
this.textAlign css color spec for the text.
this.textColor A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer.
this.renderer = $.jqplot.DivTitleRenderer The default title renderer for jqPlot.renderer specific options passed to the renderer.
this.rendererOptions = {} wether or not to draw the series.
this.show = true which x axis to use with this series, either ‘xaxis’ or ‘x2axis’.
this.xaxis = 'xaxis' which y axis to use with this series, either ‘yaxis’ or ‘y2axis’.
this.yaxis = 'yaxis' A class of a renderer which will draw the series, see $.jqplot.LineRenderer.
this.renderer = $.jqplot.LineRenderer The default line renderer for jqPlot, this class has no options beyond the Series class.Options to pass on to the renderer.
this.rendererOptions = {} Line label to use in the legend.
this.label = '' true to show label for this series in the legend.
this.showLabel = true css color spec for the series
this.color width of the line in pixels.
this.lineWidth = 2.5 Canvas lineJoin style between segments of series.
this.lineJoin = 'round' Canvas lineCap style at ends of line.
this.lineCap = 'round' wether or not to draw a shadow on the line
this.shadow = true Shadow angle in degrees
this.shadowAngle = 45 Shadow offset from line in pixels
this.shadowOffset = 1.25 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 Alpha channel transparency of shadow.
this.shadowAlpha = '0.1' Wether line segments should be be broken at null value.
this.breakOnNull = false A class of a renderer which will draw marker (e.g.
this.markerRenderer = $.jqplot.MarkerRenderer renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer.
this.markerOptions = {} The default jqPlot marker renderer, rendering the points on the line.wether to actually draw the line or not.
this.showLine = true wether or not to show the markers at the data points.
this.showMarker = true 0 based index of this series in the plot series array.
this.index true or false, wether to fill under lines or in bars.
this.fill = false CSS color spec to use for fill under line.
this.fillColor Alpha transparency to apply to the fill under the line.
this.fillAlpha If true will stroke the line (with color this.color) as well as fill under it.
this.fillAndStroke = false true to not stack this series with other series in the plot.
this.disableStack = false how close or far (in pixels) the cursor must be from a point marker to detect the point.
this.neighborThreshold = 4 true will force bar and filled series to fill toward zero on the fill Axis.
this.fillToZero = false fill a filled series to this value on the fill axis.
this.fillToValue = 0 Either ‘x’ or ‘y’.
this.fillAxis = 'y' true to color negative values differently in filled and bar charts.
this.useNegativeColors = true wether to draw the gridlines on the plot.
this.drawGridlines = true color of the grid lines.
this.gridLineColor = '#cccccc' width of the grid lines.
this.gridLineWidth = 1.0 css spec for the background color.
this.background = '#fffdf6' css spec for the color of the grid border.
this.borderColor = '#999999' width of the border in pixels.
this.borderWidth = 2.0 True to draw border around grid.
this.drawBorder = true wether to show a shadow behind the grid.
this.shadow = true shadow angle in degrees
this.shadowAngle = 45 Offset of each shadow stroke from the border in pixels
this.shadowOffset = 1.5 width of the stoke for the shadow
this.shadowWidth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 an optional css color spec for the shadow in ‘rgba(n, n, n, n)’ form
this.shadowColor = null Alpha channel transparency of shadow.
this.shadowAlpha = '0.07' Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer.
this.renderer = $.jqplot.CanvasGridRenderer The default jqPlot grid renderer, creating a grid on a canvas element.Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer.
this.rendererOptions = {} user’s data.
this.data = [] default options that will be applied to all series.
seriesDefaults: {}, series:[] } Array of series object options.
this.series = [] up to 4 axes are supported, each with it’s own options, See Axis for axis specific options.
this.axes = {xaxis: new Axis('xaxis'), yaxis: new Axis('yaxis'), x2axis: new Axis('x2axis'), y2axis: new Axis('y2axis'), y3axis: new Axis('y3axis'), y4axis: new Axis('y4axis'), y5axis: new Axis('y5axis'), y6axis: new Axis('y6axis'), y7axis: new Axis('y7axis'), y8axis: new Axis('y8axis'), y9axis: new Axis('y9axis')} An individual axis object.See Grid for grid specific options.
this.grid = new Grid() Object representing the grid on which the plot is drawn.see $.jqplot.TableLegendRenderer
this.legend = new Legend() Ann array of CSS color specifications that will be applied, in order, to the series in the plot.
this.seriesColors = $.jqplot.config.defaultColors false to not sort the data passed in by the user.
this.sortData = true css spec for the font-size attribute.
this.fontSize Title object.
this.title = new Title() true or false, creates a stack or “mountain” plot.
this.stackSeries = false 1-D data series are internally converted into 2-D [x,y] data point arrays by jqPlot.
this.defaultAxisStart = 1 sets the plot target, checks data and applies user options to plot.
this.init = function( target, data, options ) Reset the specified axes min, max, numberTicks and tickInterval properties to null or reset these properties on all axes if no list of axes is provided.
this.resetAxesScale = function( axes, options ) reinitialize plot for replotting.
this.reInitialize = function () Releases all resources occupied by the plot
this.destroy = function() Does a reinitialization of the plot followed by a redraw.
this.replot = function( options ) Empties the plot target div and redraws the plot.
this.redraw = function( clear ) Draws all elements of the plot into the container.
this.draw = function() Redraws all or just one series on the plot.
this.drawSeries = function( options, idx ) This method requires jQuery 1.4+ Moves the specified series canvas in front of all other series canvases.
this.moveSeriesToFront = function ( idx ) This method requires jQuery 1.4+ Moves the specified series canvas behind all other series canvases.
this.moveSeriesToBack = function ( idx ) This method requires jQuery 1.4+ Restore the series canvas order to its previous state.
this.restorePreviousSeriesOrder = function () This method requires jQuery 1.4+ Restore the series canvas order to its original order when the plot was created.
this.restoreOriginalSeriesOrder = function () GNU GENERAL PUBLIC LICENSE Version 2, June 1991Copyright © 2009-2011 Chris LeonelloThe default jqPlot axis renderer, creating a numeric axis.An individual data series object.+Plot Title object.This document is out of date.This document will help you understand how jqPlot’s options relate to the API documentation and the jqPlot object itself.Wether to display the axis on the graph.
this.show = false A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.
this.tickRenderer = $.jqplot.AxisTickRenderer A “tick” object showing the value of a tick/gridline on the plot.Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options.
this.tickOptions = {} A class of a rendering engine for creating an axis label.
this.labelRenderer = $.jqplot.AxisLabelRenderer Options passed to the label renderer.
this.labelOptions = {} Label for the axis
this.label = null true to show the axis label.
this.showLabel = true minimum value of the axis (in data units, not pixels).
this.min = null maximum value of the axis (in data units, not pixels).
this.max = null DEPRECATED the default scaling algorithm produces superior results.
this.autoscale = false Padding to extend the range above and below the data bounds.
this.pad = 1.2 Padding to extend the range above data bounds.
this.padMax = null Padding to extend the range below data bounds.
this.padMin = null 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis.
this.ticks = [] Desired number of ticks.
this.numberTicks number of units between ticks.
this.tickInterval A class of a rendering engine that handles tick generation, scaling input data to pixel grid units and drawing the axis element.
this.renderer = $.jqplot.LinearAxisRenderer renderer specific options.
this.rendererOptions = {} Wether to show the ticks (both marks and labels) or not.
this.showTicks = true Wether to show the tick marks (line crossing grid) or not.
this.showTickMarks = true Wether or not to show minor ticks.
this.showMinorTicks = true True to draw gridlines for major axis ticks.
this.drawMajorGridlines = true True to draw gridlines for minor ticks.
this.drawMinorGridlines = false True to draw tick marks for major axis ticks.
this.drawMajorTickMarks = true True to draw tick marks for minor ticks.
this.drawMinorTickMarks = true Use the color of the first series associated with this axis for the tick marks and line bordering this axis.
this.useSeriesColor = false width of line stroked at the border of the axis.
this.borderWidth = null color of the border adjacent to the axis.
this.borderColor = null true to try and synchronize tick spacing across multiple axes so that ticks and grid lines line up.
this.syncTicks = null Approximate pixel spacing between ticks on graph.
this.tickSpacing = 75 Wether to display the legend on the graph.
this.show = false Placement of the legend.
this.location = 'ne' Array of labels to use.
this.labels = [] true to show the label text on the legend.
this.showLabels = true true to show the color swatches on the legend.
this.showSwatches = true “insideGrid” places legend inside the grid area of the plot.
this.placement = "insideGrid" DEPRECATED.
this.xoffset = 0 DEPRECATED.
this.yoffset = 0 css spec for the border around the legend box.
this.border css spec for the background of the legend box.
this.background css color spec for the legend text.
this.textColor css font-family spec for the legend text.
this.fontFamily css font-size spec for the legend text.
this.fontSize css padding-top spec for the rows in the legend.
this.rowSpacing = '0.5em' renderer specific options passed to the renderer.
this.rendererOptions = {} CSS margin for the legend DOM element.
this.marginTop = null CSS margin for the legend DOM element.
this.marginRight = null CSS margin for the legend DOM element.
this.marginBottom = null CSS margin for the legend DOM element.
this.marginLeft = null True to escape special characters with their html entity equivalents in legend text.
this.escapeHtml = false text of the title;
this.text = text wether or not to show the title
this.show = true css font-family spec for the text.
this.fontFamily css font-size spec for the text.
this.fontSize css text-align spec for the text.
this.textAlign css color spec for the text.
this.textColor A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer.
this.renderer = $.jqplot.DivTitleRenderer The default title renderer for jqPlot.renderer specific options passed to the renderer.
this.rendererOptions = {} True to escape special characters with their html entity equivalents in title text.
this.escapeHtml = false wether or not to draw the series.
this.show = true which x axis to use with this series, either ‘xaxis’ or ‘x2axis’.
this.xaxis = 'xaxis' which y axis to use with this series, either ‘yaxis’ or ‘y2axis’.
this.yaxis = 'yaxis' A class of a renderer which will draw the series, see $.jqplot.LineRenderer.
this.renderer = $.jqplot.LineRenderer The default line renderer for jqPlot, this class has no options beyond the Series class.Options to pass on to the renderer.
this.rendererOptions = {} Line label to use in the legend.
this.label = '' true to show label for this series in the legend.
this.showLabel = true css color spec for the series
this.color css color spec used for filled (area) plots that are filled to zero and the “useNegativeColors” option is true.
this.negativeColor width of the line in pixels.
this.lineWidth = 2.5 Canvas lineJoin style between segments of series.
this.lineJoin = 'round' Canvas lineCap style at ends of line.
this.lineCap = 'round' line pattern ‘dashed’, ‘dotted’, ‘solid’, some combination of ‘-’ and ‘.’
this.linePattern = 'solid' Shadow angle in degrees
this.shadowAngle = 45 Shadow offset from line in pixels
this.shadowOffset = 1.25 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 Alpha channel transparency of shadow.
this.shadowAlpha = '0.1' Wether line segments should be be broken at null value.
this.breakOnNull = false A class of a renderer which will draw marker (e.g.
this.markerRenderer = $.jqplot.MarkerRenderer renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer.
this.markerOptions = {} The default jqPlot marker renderer, rendering the points on the line.wether to actually draw the line or not.
this.showLine = true wether or not to show the markers at the data points.
this.showMarker = true 0 based index of this series in the plot series array.
this.index true or false, wether to fill under lines or in bars.
this.fill = false CSS color spec to use for fill under line.
this.fillColor Alpha transparency to apply to the fill under the line.
this.fillAlpha If true will stroke the line (with color this.color) as well as fill under it.
this.fillAndStroke = false true to not stack this series with other series in the plot.
this.disableStack = false how close or far (in pixels) the cursor must be from a point marker to detect the point.
this.neighborThreshold = 4 true will force bar and filled series to fill toward zero on the fill Axis.
this.fillToZero = false fill a filled series to this value on the fill axis.
this.fillToValue = 0 Either ‘x’ or ‘y’.
this.fillAxis = 'y' true to color negative values differently in filled and bar charts.
this.useNegativeColors = true wether to draw the gridlines on the plot.
this.drawGridlines = true color of the grid lines.
this.gridLineColor = '#cccccc' width of the grid lines.
this.gridLineWidth = 1.0 css spec for the background color.
this.background = '#fffdf6' css spec for the color of the grid border.
this.borderColor = '#999999' width of the border in pixels.
this.borderWidth = 2.0 True to draw border around grid.
this.drawBorder = true wether to show a shadow behind the grid.
this.shadow = true shadow angle in degrees
this.shadowAngle = 45 Offset of each shadow stroke from the border in pixels
this.shadowOffset = 1.5 width of the stoke for the shadow
this.shadowWidth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 an optional css color spec for the shadow in ‘rgba(n, n, n, n)’ form
this.shadowColor = null Alpha channel transparency of shadow.
this.shadowAlpha = '0.07' Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer.
this.renderer = $.jqplot.CanvasGridRenderer The default jqPlot grid renderer, creating a grid on a canvas element.Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer.
this.rendererOptions = {} user’s data.
this.data = [] A callable which can be used to preprocess data passed into the plot.
this.dataRenderer Options that will be passed to the dataRenderer.
this.dataRendererOptions Options to set up a mock plot with a data loading indicator if no data is specified.
this.noDataIndicator = { show: false, indicator: 'Loading Data...', axes: { xaxis: { min: 0, max: 10, tickInterval: 2, show: true }, yaxis: { min: 0, max: 12, tickInterval: 3, show: true } } } default options that will be applied to all series.
seriesDefaults: {}, series:[] } Array of series object options.
this.series = [] up to 4 axes are supported, each with it’s own options, See Axis for axis specific options.
this.axes = {xaxis: new Axis('xaxis'), yaxis: new Axis('yaxis'), x2axis: new Axis('x2axis'), y2axis: new Axis('y2axis'), y3axis: new Axis('y3axis'), y4axis: new Axis('y4axis'), y5axis: new Axis('y5axis'), y6axis: new Axis('y6axis'), y7axis: new Axis('y7axis'), y8axis: new Axis('y8axis'), y9axis: new Axis('y9axis'), yMidAxis: new Axis('yMidAxis')} An individual axis object.See Grid for grid specific options.
this.grid = new Grid() Object representing the grid on which the plot is drawn.see $.jqplot.TableLegendRenderer
this.legend = new Legend() Ann array of CSS color specifications that will be applied, in order, to the series in the plot.
this.seriesColors = $.jqplot.config.defaultColors false to not sort the data passed in by the user.
this.sortData = true css spec for the font-size attribute.
this.fontSize Title object.
this.title = new Title() true or false, creates a stack or “mountain” plot.
this.stackSeries = false 1-D data series are internally converted into 2-D [x,y] data point arrays by jqPlot.
this.defaultAxisStart = 1 sets the plot target, checks data and applies user options to plot.
this.init = function( target, data, options ) Reset the specified axes min, max, numberTicks and tickInterval properties to null or reset these properties on all axes if no list of axes is provided.
this.resetAxesScale = function( axes, options ) reinitialize plot for replotting.
this.reInitialize = function () Releases all resources occupied by the plot
this.destroy = function() Does a reinitialization of the plot followed by a redraw.
this.replot = function( options ) Empties the plot target div and redraws the plot.
this.redraw = function( clear ) Draws all elements of the plot into the container.
this.draw = function() Redraws all or just one series on the plot.
this.drawSeries = function( options, idx ) This method requires jQuery 1.4+ Moves the specified series canvas in front of all other series canvases.
this.moveSeriesToFront = function ( idx ) This method requires jQuery 1.4+ Moves the specified series canvas behind all other series canvases.
this.moveSeriesToBack = function ( idx ) This method requires jQuery 1.4+ Restore the series canvas order to its previous state.
this.restorePreviousSeriesOrder = function () This method requires jQuery 1.4+ Restore the series canvas order to its original order when the plot was created.
this.restoreOriginalSeriesOrder = function () GNU GENERAL PUBLIC LICENSE Version 2, June 1991Copyright © 2009-2011 Chris LeonelloThe default jqPlot axis renderer, creating a numeric axis.An individual data series object.diff --git a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-divTitleRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-divTitleRenderer-js.html index 07a41bb223..c474373861 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-divTitleRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-divTitleRenderer-js.html @@ -16,10 +16,10 @@ if (browserType) {document.write("Plot Title object.");if (browserV- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-lineRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-lineRenderer-js.html index edf05373a6..207194a9ef 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-lineRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-lineRenderer-js.html @@ -11,7 +11,29 @@ if (browserType) {document.write("");if (browserV -+The default line renderer for jqPlot, this class has no options beyond the Series class. Draws series as a line.
Summary
$.jqplot. LineRenderer The default line renderer for jqPlot, this class has no options beyond the Series class. Properties highlightMouseOver True to highlight area on a filled plot when moused over. highlightMouseDown True to highlight when a mouse button is pressed over an area on a filled plot. highlightColor color to use when highlighting an area on a filled plot. Functions setGridData converts the user data values to grid coordinates and stores them in the gridData array. makeGridData converts any arbitrary data values to grid coordinates and returns them. -+ + + +The default line renderer for jqPlot, this class has no options beyond the Series class. Draws series as a line.
Summary
$.jqplot. LineRenderer The default line renderer for jqPlot, this class has no options beyond the Series class. Properties smooth True to draw a smoothed (interpolated) line through the data points with automatically computed number of smoothing points. constrainSmoothing True to use a more accurate smoothing algorithm that will not overshoot any data points. bandData Data used to draw error bands or confidence intervals above/below a line. bands Banding around line, e.g error bands or confidence intervals. show true to show the bands. color color of lines at top and bottom of bands [default: series color]. showLines True to show lines at top and bottom of bands [default: false]. fill True to fill area between bands [default: true]. fillColor css color spec for filled area. interval User specified interval above and below line for bands [default: ‘3%’’]. Properties highlightMouseOver True to highlight area on a filled plot when moused over. highlightMouseDown True to highlight when a mouse button is pressed over an area on a filled plot. highlightColor color to use when highlighting an area on a filled plot. + ++ ++ + + +bandData
this.renderer.bandData = [] Data used to draw error bands or confidence intervals above/below a line.
bandData can be input in 3 forms. jqPlot will figure out which is the low band line and which is the high band line for all forms:
A 2 dimensional array like [[yl1, yl2, ...], [yu1, yu2, ...]] where [yl1, yl2, ...] are y values of the lower line and [yu1, yu2, ...] are y values of the upper line. In this case there must be the same number of y data points as data points in the series and the bands will inherit the x values of the series.
A 2 dimensional array like [[[xl1, yl1], [xl2, yl2], ...], [[xh1, yh1], [xh2, yh2], ...]] where [xl1, yl1] are x,y data points for the lower line and [xh1, yh1] are x,y data points for the high line. x values do not have to correspond to the x values of the series and can be of any arbitrary length.
Can be of form [[yl1, yu1], [yl2, yu2], [yl3, yu3], ...] where there must be 3 or more arrays and there must be the same number of arrays as there are data points in the series. In this case, [yl1, yu1] specifies the lower and upper y values for the 1st data point and so on. The bands will inherit the x values from the series.
+ + + + + + + + + +@@ -21,19 +43,13 @@ if (browserType) {document.write("");if (browserV - - -- + - @@ -41,7 +57,7 @@ HideAllBut([2, 4], 6);// -->- --makeGridData
$.jqplot.LineRenderer.prototype.makeGridData = function( data, plot ) converts any arbitrary data values to grid coordinates and returns them. This method exists so that plugins can use a series’ linerenderer to generate grid data points without overwriting the grid data associated with that series. Called with scope of a series.
An individual data series object.True to highlight area on a filled plot when moused over.
this.highlightMouseOver = true True to highlight when a mouse button is pressed over an area on a filled plot.
this.highlightMouseDown = false color to use when highlighting an area on a filled plot.
this.highlightColor = null converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.LineRenderer.prototype.setGridData = function( plot ) +converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.LineRenderer.prototype.makeGridData = function( data, plot ) An individual data series object.True to draw a smoothed (interpolated) line through the data points with automatically computed number of smoothing points.
this.renderer.smooth = false True to use a more accurate smoothing algorithm that will not overshoot any data points.
this.renderer.constrainSmoothing = true Data used to draw error bands or confidence intervals above/below a line.
this.renderer.bandData = [] User specified interval above and below line for bands [default: ‘3%’’].
interval: '3%' } True to highlight area on a filled plot when moused over.
this.highlightMouseOver = true True to highlight when a mouse button is pressed over an area on a filled plot.
this.highlightMouseDown = false diff --git a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-linearAxisRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-linearAxisRenderer-js.html index 51d6919ba0..1834425e70 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-linearAxisRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-linearAxisRenderer-js.html @@ -11,7 +11,7 @@ if (browserType) {document.write("color to use when highlighting an area on a filled plot.
this.highlightColor = null ");if (browserV -+The default jqPlot axis renderer, creating a numeric axis. The renderer has no additional options beyond the Axis object.
Summary
$.jqplot. LinearAxisRenderer The default jqPlot axis renderer, creating a numeric axis. Properties breakPoints EXPERIMENTAL!! breakTickLabel Label to use at the axis break if breakPoints are specified. forceTickAt0 This will ensure that there is always a tick mark at 0. forceTickAt100 This will ensure that there is always a tick mark at 100. -@@ -19,17 +19,27 @@ if (browserType) {document.write("The default jqPlot axis renderer, creating a numeric axis.
Summary
$.jqplot. LinearAxisRenderer The default jqPlot axis renderer, creating a numeric axis. Properties breakPoints EXPERIMENTAL!! breakTickLabel Label to use at the axis break if breakPoints are specified. drawBaseline True to draw the axis baseline. baselineWidth width of the baseline in pixels. baselineColor CSS color spec for the baseline. forceTickAt0 This will ensure that there is always a tick mark at 0. forceTickAt100 This will ensure that there is always a tick mark at 100. tickInset Controls the amount to inset the first and last ticks from the edges of the grid, in multiples of the tick interval. minorTicks Number of ticks to add between “major” ticks. ");if (browserV- + - @@ -37,7 +47,7 @@ HideAllBut([2, 4], 6);// -->+ + + + + +forceTickAt0
this.forceTickAt0 = false This will ensure that there is always a tick mark at 0. If data range is strictly positive or negative, this will force 0 to be inside the axis bounds unless the appropriate axis pad (pad, padMin or padMax) is set to 0, then this will force an axis min or max value at 0. This has know effect when any of the following options are set: autoscale, min, max, numberTicks or tickInterval.
+forceTickAt100
this.forceTickAt100 = false This will ensure that there is always a tick mark at 100. If data range is strictly above or below 100, this will force 100 to be inside the axis bounds unless the appropriate axis pad (pad, padMin or padMax) is set to 0, then this will force an axis min or max value at 100. This has know effect when any of the following options are set: autoscale, min, max, numberTicks or tickInterval.
+ + +EXPERIMENTAL!!
this.breakPoints = null Label to use at the axis break if breakPoints are specified.
this.breakTickLabel = "&asymp This will ensure that there is always a tick mark at 0.
this.forceTickAt0 = false This will ensure that there is always a tick mark at 100.
this.forceTickAt100 = false +An individual axis object.EXPERIMENTAL!!
this.breakPoints = null Label to use at the axis break if breakPoints are specified.
this.breakTickLabel = "&asymp True to draw the axis baseline.
this.drawBaseline = true width of the baseline in pixels.
this.baselineWidth = null CSS color spec for the baseline.
this.baselineColor = null This will ensure that there is always a tick mark at 0.
this.forceTickAt0 = false This will ensure that there is always a tick mark at 100.
this.forceTickAt100 = false Controls the amount to inset the first and last ticks from the edges of the grid, in multiples of the tick interval.
this.tickInset = 0 diff --git a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-markerRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-markerRenderer-js.html index bee3ebde25..ab95610a35 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-markerRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-markerRenderer-js.html @@ -42,10 +42,10 @@ if (browserType) {document.write("Number of ticks to add between “major” ticks.
this.minorTicks = 0 ");if (browserV- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-shadowRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-shadowRenderer-js.html index 7d2bac82d5..e53b4496f8 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-shadowRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-shadowRenderer-js.html @@ -38,10 +38,10 @@ if (browserType) {document.write("");if (browserV- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-shapeRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-shapeRenderer-js.html index f9441ea064..b208585da9 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-shapeRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-shapeRenderer-js.html @@ -11,10 +11,12 @@ if (browserType) {document.write("");if (browserV -+The default jqPlot shape renderer. Given a set of points will plot them and either stroke a line (fill = false) or fill them (fill = true). If a filled shape is desired, closePath = true must also be set to close the shape.
Summary
$.jqplot. shapeRenderer The default jqPlot shape renderer. Properties lineJoin How line segments of the shadow are joined. lineCap how ends of the shadow line are rendered. fill whether to fill the shape. isarc wether the shadow is an arc or not. fillRect true to draw shape as a filled rectangle. strokeRect true to draw shape as a stroked rectangle. clearRect true to cear a rectangle. strokeStyle css color spec for the stoke style fillStyle css color spec for the fill style. Functions draw draws the shape. -+The default jqPlot shape renderer. Given a set of points will plot them and either stroke a line (fill = false) or fill them (fill = true). If a filled shape is desired, closePath = true must also be set to close the shape.
Summary
$.jqplot. shapeRenderer The default jqPlot shape renderer. Properties linePattern line pattern ‘dashed’, ‘dotted’, ‘solid’, some combination of ‘-’ and ‘.’ lineJoin How line segments of the shadow are joined. lineCap how ends of the shadow line are rendered. fill whether to fill the shape. isarc wether the shadow is an arc or not. fillRect true to draw shape as a filled rectangle. strokeRect true to draw shape as a stroked rectangle. clearRect true to cear a rectangle. strokeStyle css color spec for the stoke style fillStyle css color spec for the fill style. Functions draw draws the shape. + @@ -40,10 +42,10 @@ if (browserType) {document.write("");if (browserV- + - @@ -51,7 +53,7 @@ HideAllBut([2, 4], 6);// -->How line segments of the shadow are joined.
this.lineJoin = 'miter' how ends of the shadow line are rendered.
this.lineCap = 'round' whether to fill the shape.
this.fill = false wether the shadow is an arc or not.
this.isarc = false true to draw shape as a filled rectangle.
this.fillRect = false true to draw shape as a stroked rectangle.
this.strokeRect = false true to cear a rectangle.
this.clearRect = false css color spec for the stoke style
this.strokeStyle = '#999999' css color spec for the fill style.
this.fillStyle = '#999999' +draws the shape.
$.jqplot.ShapeRenderer.prototype.draw = function( ctx, points, options ) line pattern ‘dashed’, ‘dotted’, ‘solid’, some combination of ‘-’ and ‘.’
this.linePattern = 'solid' How line segments of the shadow are joined.
this.lineJoin = 'miter' how ends of the shadow line are rendered.
this.lineCap = 'round' whether to fill the shape.
this.fill = false wether the shadow is an arc or not.
this.isarc = false true to draw shape as a filled rectangle.
this.fillRect = false true to draw shape as a stroked rectangle.
this.strokeRect = false true to cear a rectangle.
this.clearRect = false css color spec for the stoke style
this.strokeStyle = '#999999' css color spec for the fill style.
this.fillStyle = '#999999' diff --git a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-themeEngine-js.html b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-themeEngine-js.html index 189b777978..e5001d1ab1 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-themeEngine-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-themeEngine-js.html @@ -33,6 +33,7 @@ if (browserType) {document.write("draws the shape.
$.jqplot.ShapeRenderer.prototype.draw = function( ctx, points, options ) ");if (browserV series: [{ color: "#4bb2c5", lineWidth: 2.5, + linePattern: "solid", shadow: true, fillColor: "#4bb2c5", showMarker: true, @@ -167,10 +168,10 @@ if (browserType) {document.write("");if (browserV- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/files/jqplot-toImage-js.html b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-toImage-js.html new file mode 100644 index 0000000000..f0cf7acab4 --- /dev/null +++ b/phpgwapi/js/jquery/jqplot/docs/files/jqplot-toImage-js.html @@ -0,0 +1,39 @@ + + +$.fn + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/phpgwapi/js/jquery/jqplot/docs/files/optionsTutorial-txt.html b/phpgwapi/js/jquery/jqplot/docs/files/optionsTutorial-txt.html index dba0033f25..ccb150cc69 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/optionsTutorial-txt.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/optionsTutorial-txt.html @@ -20,6 +20,7 @@ if (browserType) {document.write("");if (browserV |-series(Array)-| | |-Series1-| | | |-lineWidth + | | |-linePattern | | |-shadow | | |-showLine | | |-showMarker @@ -96,10 +97,10 @@ if (browserType) {document.write("");if (browserV- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-BezierCurveRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-BezierCurveRenderer-js.html index 937a54068f..97535b3a21 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-BezierCurveRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-BezierCurveRenderer-js.html @@ -22,10 +22,10 @@ if (browserType) {document.write("");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-barRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-barRenderer-js.html index 13f02114f1..345586fb09 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-barRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-barRenderer-js.html @@ -11,7 +11,7 @@ if (browserType) {document.write("API DocumentationPluginsBezierCurveRenderer");if (browserV -+A plugin renderer for jqPlot to draw a bar plot. Draws series as a line.
Summary
$.jqplot. BarRenderer A plugin renderer for jqPlot to draw a bar plot. Properties barPadding Number of pixels between adjacent bars at the same axis value. barMargin Number of pixels between groups of bars at adjacent axis values. barDirection ‘vertical’ = up and down bars, ‘horizontal’ = side to side bars barWidth Width of the bar in pixels (auto by devaul). shadowOffset offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last. shadowDepth number of strokes to apply to the shadow, each stroke offset shadowOffset from the last. shadowAlpha transparency of the shadow (0 = transparent, 1 = opaque) waterfall true to enable waterfall plot. groups group bars into this many groups varyBarColor true to color each bar of a series separately rather than have every bar of a given series the same color. highlightMouseOver True to highlight slice when moused over. highlightMouseDown True to highlight when a mouse button is pressed over a slice. highlightColors an array of colors to use when highlighting a bar. -@@ -41,13 +41,15 @@ if (browserType) {document.write("A plugin renderer for jqPlot to draw a bar plot. Draws series as a line.
Summary
$.jqplot. BarRenderer A plugin renderer for jqPlot to draw a bar plot. Properties barPadding Number of pixels between adjacent bars at the same axis value. barMargin Number of pixels between groups of bars at adjacent axis values. barDirection ‘vertical’ = up and down bars, ‘horizontal’ = side to side bars barWidth Width of the bar in pixels (auto by devaul). shadowOffset offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last. shadowDepth number of strokes to apply to the shadow, each stroke offset shadowOffset from the last. shadowAlpha transparency of the shadow (0 = transparent, 1 = opaque) waterfall true to enable waterfall plot. groups group bars into this many groups varyBarColor true to color each bar of a series separately rather than have every bar of a given series the same color. highlightMouseOver True to highlight slice when moused over. highlightMouseDown True to highlight when a mouse button is pressed over a slice. highlightColors an array of colors to use when highlighting a bar. transposedData NOT IMPLEMENTED YET. ");if (browserV +- + -+transposedData
this.transposedData = true NOT IMPLEMENTED YET. True if this is a horizontal bar plot and x and y values are “transposed”. Tranposed, or “swapped”, data is required prior to rev. 894 builds of jqPlot with horizontal bars. Allows backward compatability of bar renderer horizontal bars with old style data sets.
@@ -55,7 +57,7 @@ HideAllBut([3, 4], 6);// -->API DocumentationPluginsBarRendererNumber of pixels between adjacent bars at the same axis value.
this.barPadding = 8 Number of pixels between groups of bars at adjacent axis values.
this.barMargin = 10 ‘vertical’ = up and down bars, ‘horizontal’ = side to side bars
this.barDirection = 'vertical' Width of the bar in pixels (auto by devaul).
this.barWidth = null offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.08 true to enable waterfall plot.
this.waterfall = false group bars into this many groups
this.groups = 1 true to color each bar of a series separately rather than have every bar of a given series the same color.
this.varyBarColor = false True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false +an array of colors to use when highlighting a bar.
this.highlightColors = [] Number of pixels between adjacent bars at the same axis value.
this.barPadding = 8 Number of pixels between groups of bars at adjacent axis values.
this.barMargin = 10 ‘vertical’ = up and down bars, ‘horizontal’ = side to side bars
this.barDirection = 'vertical' Width of the bar in pixels (auto by devaul).
this.barWidth = null offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.08 true to enable waterfall plot.
this.waterfall = false group bars into this many groups
this.groups = 1 true to color each bar of a series separately rather than have every bar of a given series the same color.
this.varyBarColor = false True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false an array of colors to use when highlighting a bar.
this.highlightColors = [] diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-blockRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-blockRenderer-js.html index e3a0c97aca..da84692762 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-blockRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-blockRenderer-js.html @@ -30,10 +30,10 @@ if (browserType) {document.write("NOT IMPLEMENTED YET.
this.transposedData = true ");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-bubbleRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-bubbleRenderer-js.html index d2e71cd9a1..e59d1d04c3 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-bubbleRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-bubbleRenderer-js.html @@ -48,10 +48,10 @@ if (browserType) {document.write("API DocumentationPluginsBlockRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasAxisLabelRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasAxisLabelRenderer-js.html index c1c5d0c085..6d3bccd055 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasAxisLabelRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasAxisLabelRenderer-js.html @@ -40,10 +40,10 @@ if (browserType) {document.write("API DocumentationPluginsBubbleRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasAxisTickRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasAxisTickRenderer-js.html index ee32c92d52..ab4a1edaa4 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasAxisTickRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasAxisTickRenderer-js.html @@ -56,10 +56,10 @@ if (browserType) {document.write("API DocumentationPluginsCanvasAxisLabelRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasOverlay-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasOverlay-js.html index 9ee5093656..c7854ab432 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasOverlay-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-canvasOverlay-js.html @@ -11,173 +11,89 @@ if (browserType) {document.write("API DocumentationPluginsCanvasAxisTickRenderer");if (browserV -- + --+Summary
$.jqplot. CanvasOverlay Properties objects Line A straight line. Properties name Optional name for this overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. start [x, y] coordinates for the start of the line. stop [x, y] coordinates for the end of the line. HorizontalLine A straight horizontal line. Properties name Optional name for this overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. y y value to position the line xmin x value for the start of the line, null to scale to axis min. xmax x value for the end of the line, null to scale to axis max. DashedHorizontalLine A straight dashed horizontal line. Properties name Optional name for this overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. dashPattern Array of line, space settings in pixels. VerticalLine A straight vertical line. Properties name Optional name for this overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. DashedVerticalLine A straight dashed vertical line. Properties name Optional name for this overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. dashPattern Array of line, space settings in pixels. - + --Summary
$.jqplot. CanvasOverlay Properties objects name Optional name for the overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. showTooltip Show a tooltip with data point values. showTooltipPrecision Controls how close to line cursor must be to show tooltip. tooltipLocation Where to position tooltip, ‘n’, ‘ne’, ‘e’, ‘se’, ‘s’, ‘sw’, ‘w’, ‘nw’ fadeTooltip true = fade in/out tooltip, flase = show/hide tooltip tooltipFadeSpeed ‘slow’, ‘def’, ‘fast’, or number of milliseconds. tooltipOffset Pixel offset of tooltip from the highlight. tooltipFormatString Format string passed the x and y values of the cursor on the line. Line A straight line. Properties start [x, y] coordinates for the start of the line. stop [x, y] coordinates for the end of the line. HorizontalLine A straight horizontal line. Properties y y value to position the line xmin x value for the start of the line, null to scale to axis min. xmax x value for the end of the line, null to scale to axis max. DashedHorizontalLine A straight dashed horizontal line. Properties dashPattern Array of line, space settings in pixels. VerticalLine A straight vertical line. DashedVerticalLine A straight dashed vertical line. Properties dashPattern Array of line, space settings in pixels. + + + + + + + + + + + + + + + + + + + + + + + + + + +Line
A straight line.
Summary
Properties name Optional name for this overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. start [x, y] coordinates for the start of the line. stop [x, y] coordinates for the end of the line. + + + + + + + + + ++ +- - - - - - - - - - - - - - - - - - - - - - - - -Line
A straight line.
Summary
Properties start [x, y] coordinates for the start of the line. stop [x, y] coordinates for the end of the line. +HorizontalLine
A straight horizontal line.
Summary
Properties name Optional name for this overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. y y value to position the line xmin x value for the start of the line, null to scale to axis min. xmax x value for the end of the line, null to scale to axis max. - - - - - - - - - - - - - - - - - - - - - - - - -HorizontalLine
A straight horizontal line.
Summary
Properties y y value to position the line xmin x value for the start of the line, null to scale to axis min. xmax x value for the end of the line, null to scale to axis max. +DashedHorizontalLine
A straight dashed horizontal line.
Summary
Properties name Optional name for this overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. dashPattern Array of line, space settings in pixels. - - - - - - - - - - - - - - - - - - - - - - - -DashedHorizontalLine
A straight dashed horizontal line.
Summary
Properties dashPattern Array of line, space settings in pixels. -+ - - - - - - - - - - - - - - - - - - - - - - - - -VerticalLine
A straight vertical line.
Summary
Properties name Optional name for this overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. - -+DashedVerticalLine
A straight dashed vertical line.
Summary
Properties name Optional name for this overlay object. show true to show (draw), false to not draw. lineWidth Width of the line. lineCap Type of ending placed on the line [‘round’, ‘butt’, ‘square’] color color of the line shadow wether or not to draw a shadow on the line shadowAngle Shadow angle in degrees shadowOffset Shadow offset from line in pixels shadowDepth Number of times shadow is stroked, each stroke offset shadowOffset from the last. shadowAlpha Alpha channel transparency of shadow. xaxis X axis to use for positioning/scaling the line. yaxis Y axis to use for positioning/scaling the line. dashPattern Array of line, space settings in pixels. - - - - - - - - - - - - - - - - - - - - - - - -DashedVerticalLine
A straight dashed vertical line.
Summary
Properties dashPattern Array of line, space settings in pixels. @@ -185,7 +101,7 @@ HideAllBut([3, 4], 6);// -->API DocumentationPluginsCanvasOverlay
this.objects = [] [x, y] coordinates for the end of the line.
stop: [] } Array of line, space settings in pixels.
dashPattern: [8,8] } Y axis to use for positioning/scaling the line.
yaxis: 'yaxis', x: null, ymin: null, ymax: null, yOffset: '6px', // number or string. Number interpreted as units, string as pixels. yminOffset: null, ymaxOffset: null } +Array of line, space settings in pixels.
dashPattern: [8,8] }
this.objects = [] Format string passed the x and y values of the cursor on the line.
tooltipFormatString: '%d, %d' } [x, y] coordinates for the end of the line.
stop: [] } Array of line, space settings in pixels.
dashPattern: [8,8] } diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-categoryAxisRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-categoryAxisRenderer-js.html index 83aa917416..27bc57b7e2 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-categoryAxisRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-categoryAxisRenderer-js.html @@ -23,10 +23,10 @@ line2 = [[2006, 3], [2007, 7], [2008, 6]];Array of line, space settings in pixels.
dashPattern: [8,8] } If no label arra
diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-ciParser-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-ciParser-js.html index fa1ffb1110..6bda62838d 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-ciParser-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-ciParser-js.html @@ -16,10 +16,10 @@ if (browserType) {document.write("API DocumentationPluginsCategoryAxisRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-cursor-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-cursor-js.html index ba543f94a7..6d3e23e0f5 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-cursor-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-cursor-js.html @@ -70,10 +70,10 @@ if (browserType) {document.write("API DocumentationPluginsciParser");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-dateAxisRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-dateAxisRenderer-js.html index 6b49b9412c..7277f2ee80 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-dateAxisRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-dateAxisRenderer-js.html @@ -11,7 +11,7 @@ if (browserType) {document.write("API DocumentationPluginsCursor");if (browserV --- + --A plugin for a jqPlot to render an axis as a series of date values. This renderer has no options beyond those supplied by the Axis class. It supplies it’s own tick formatter, so the tickOptions.formatter option should not be overridden.
Thanks to Ken Synder for his enhanced Date instance methods which are included with this code http://kendsnyder.com/sandbox/date/.
To use this renderer, include the plugin in your source
<script type="text/javascript" language="javascript" src="plugins/jqplot.dateAxisRenderer.js"></script>and supply the appropriate options to your plot
{axes:{xaxis:{renderer:$.jqplot.DateAxisRenderer}}}Dates can be passed into the axis in almost any recognizable value and will be parsed. They will be rendered on the axis in the format specified by tickOptions.formatString. e.g. tickOptions.formatString = ‘%Y-%m-%d’.
Accecptable format codes are:
Code Result Description ++%% % Percent SymbolA plugin for a jqPlot to render an axis as a series of date values. This renderer has no options beyond those supplied by the Axis class. It supplies it’s own tick formatter, so the tickOptions.formatter option should not be overridden.
Thanks to Ken Synder for his enhanced Date instance methods which are included with this code http://kendsnyder.com/sandbox/date/.
To use this renderer, include the plugin in your source
<script type="text/javascript" language="javascript" src="plugins/jqplot.dateAxisRenderer.js"></script>and supply the appropriate options to your plot
{axes:{xaxis:{renderer:$.jqplot.DateAxisRenderer}}}Dates can be passed into the axis in almost any recognizable value and will be parsed. They will be rendered on the axis in the format specified by tickOptions.formatString. e.g. tickOptions.formatString = ‘%Y-%m-%d’.
Accecptable format codes are:
Code Result Description == Years == %Y 2008 Four-digit year %y 08 Two-digit year @@ -61,19 +61,27 @@ if (browserType) {document.write("");if (browserV == Characters == %n \n Newline %t \t Tab -%% % Percent SymbolSummary
$.jqplot. DateAxisRenderer A plugin for a jqPlot to render an axis as a series of date values. Properties tickRenderer A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer. Summary
$.jqplot. DateAxisRenderer A plugin for a jqPlot to render an axis as a series of date values. Properties tickRenderer A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer. tickInset Controls the amount to inset the first and last ticks from the edges of the grid, in multiples of the tick interval. drawBaseline True to draw the axis baseline. baselineWidth width of the baseline in pixels. baselineColor CSS color spec for the baseline. +tickRenderer
A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer. this.tickRenderer = $.jqplot.AxisTickRenderer; this.labelRenderer = $.jqplot.AxisLabelRenderer;
+ +tickRenderer
A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer. this.tickRenderer = $.jqplot.AxisTickRenderer; this.labelRenderer = $.jqplot.AxisLabelRenderer;
+ + + + + +@@ -81,7 +89,7 @@ HideAllBut([3, 4], 6);// -->API DocumentationPluginsDateAxisRendererA “tick” object showing the value of a tick/gridline on the plot.+An individual axis object.A “tick” object showing the value of a tick/gridline on the plot.Controls the amount to inset the first and last ticks from the edges of the grid, in multiples of the tick interval.
this.tickInset = 0 True to draw the axis baseline.
this.drawBaseline = true width of the baseline in pixels.
this.baselineWidth = null CSS color spec for the baseline.
this.baselineColor = null diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-donutRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-donutRenderer-js.html index b7359a01af..c756a26d2b 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-donutRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-donutRenderer-js.html @@ -75,10 +75,10 @@ if (browserType) {document.write("An individual axis object.");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-dragable-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-dragable-js.html index 7220de4ecc..f6bdf9b938 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-dragable-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-dragable-js.html @@ -22,10 +22,10 @@ if (browserType) {document.write("API DocumentationPluginsDonutRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-enhancedLegendRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-enhancedLegendRenderer-js.html index e430478f7a..1f71f0af0d 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-enhancedLegendRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-enhancedLegendRenderer-js.html @@ -26,10 +26,10 @@ if (browserType) {document.write("API DocumentationPluginsDragable");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-funnelRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-funnelRenderer-js.html index eb95a8f3ab..0e72cac11c 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-funnelRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-funnelRenderer-js.html @@ -64,10 +64,10 @@ if (browserType) {document.write("API DocumentationPluginsEnhancedLegendRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-highlighter-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-highlighter-js.html index 9d58dcf9c3..4de53370e7 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-highlighter-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-highlighter-js.html @@ -57,10 +57,10 @@ if (browserType) {document.write("API DocumentationPluginsFunnelRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-logAxisRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-logAxisRenderer-js.html index 302c6b7c4f..6b1bc1365d 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-logAxisRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-logAxisRenderer-js.html @@ -11,21 +11,21 @@ if (browserType) {document.write("API DocumentationPluginsHighlighter");if (browserV --+A plugin for a jqPlot to render a logarithmic axis.
To use this renderer, include the plugin in your source
<script type="text/javascript" language="javascript" src="plugins/jqplot.logAxisRenderer.js"></script>and supply the appropriate options to your plot
{axes:{xaxis:{renderer:$.jqplot.LogAxisRenderer}}}Summary
$.jqplot. LogAxisRenderer A plugin for a jqPlot to render a logarithmic axis. axisDefaults Default properties which will be applied directly to the series. Properties Properties tickRenderer A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer. - + -A plugin for a jqPlot to render a logarithmic axis.
To use this renderer, include the plugin in your source
<script type="text/javascript" language="javascript" src="plugins/jqplot.logAxisRenderer.js"></script>and supply the appropriate options to your plot
{axes:{xaxis:{renderer:$.jqplot.LogAxisRenderer}}}Summary
$.jqplot. LogAxisRenderer A plugin for a jqPlot to render a logarithmic axis. axisDefaults Default properties which will be applied directly to the series. Properties Properties drawBaseline True to draw the axis baseline. -+tickRenderer
A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer. this.tickRenderer = $.jqplot.AxisTickRenderer; this.labelRenderer = $.jqplot.AxisLabelRenderer;
@@ -33,7 +33,7 @@ HideAllBut([3, 4], 6);// -->API DocumentationPluginsLogAxisRenderer+A “tick” object showing the value of a tick/gridline on the plot.diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-mekkoAxisRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-mekkoAxisRenderer-js.html index 2781762503..0c51180de0 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-mekkoAxisRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-mekkoAxisRenderer-js.html @@ -26,10 +26,10 @@ if (browserType) {document.write("True to draw the axis baseline.
this.drawBaseline = true ");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-mekkoRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-mekkoRenderer-js.html index 5f46a49b5c..a7d754bac1 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-mekkoRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-mekkoRenderer-js.html @@ -39,10 +39,10 @@ axes:{xaxis:{barLabels:barLabels}}API DocumentationPluginsMekkoAxisRenderer-+ -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-meterGaugeRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-meterGaugeRenderer-js.html index 5d70045a09..ec718a8600 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-meterGaugeRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-meterGaugeRenderer-js.html @@ -80,10 +80,10 @@ if (browserType) {document.write("API DocumentationPluginsMekkoRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-ohlcRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-ohlcRenderer-js.html index 445886ec6b..4d2e187a94 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-ohlcRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-ohlcRenderer-js.html @@ -42,10 +42,10 @@ if (browserType) {document.write("API DocumentationPluginsMeterGaugeRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-pieRenderer-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-pieRenderer-js.html index 1d0ddfeed2..7984ced471 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-pieRenderer-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-pieRenderer-js.html @@ -70,10 +70,10 @@ if (browserType) {document.write("API DocumentationPluginsOHLCRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-pointLabels-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-pointLabels-js.html index 157961012e..d56a32e151 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-pointLabels-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-pointLabels-js.html @@ -49,10 +49,10 @@ if (browserType) {document.write("API DocumentationPluginsPieRenderer");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-trendline-js.html b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-trendline-js.html index ea296691f2..c56e42163b 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-trendline-js.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/plugins/jqplot-trendline-js.html @@ -44,10 +44,10 @@ if (browserType) {document.write("API DocumentationPluginsPointLabels");if (browserV- + -diff --git a/phpgwapi/js/jquery/jqplot/docs/files/usage-txt.html b/phpgwapi/js/jquery/jqplot/docs/files/usage-txt.html index 377d0a457e..80ec578e07 100644 --- a/phpgwapi/js/jquery/jqplot/docs/files/usage-txt.html +++ b/phpgwapi/js/jquery/jqplot/docs/files/usage-txt.html @@ -11,8 +11,8 @@ if (browserType) {document.write("API DocumentationPluginsTrendline");if (browserV -Usage Documentation
Introduction
jqPlot is a jQuery plugin to generate pure client-side javascript charts in your web pages.
The jqPlot home page is at http://www.jqplot.com/.
The project page and downloads are at http://www.bitbucket.org/cleonello/jqplot/.
Below are a few examples to demonstrate jqPlot usage. These plots are shown as static images. Many more examples of dynamically rendered plots can be seen on the test and examples pages here: ../../tests/.
Include the Files
jqPlot requires jQuery (1.4+ required for certain features). jQuery 1.4.4 is included in the distribution. To use jqPlot include jquery, the jqPlot jQuery plugin, jqPlot css file and optionally the excanvas script for IE support in your web page. Note, excanvas is required only for IE versions below 9. IE 9 includes native support for the canvas element and does not require excanvas:
<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="excanvas.js"></script><![endif]--> -<script language="javascript" type="text/javascript" src="jquery-1.4.4.min.js"></script> +Usage Documentation
Introduction
jqPlot is a jQuery plugin to generate pure client-side javascript charts in your web pages.
The jqPlot home page is at http://www.jqplot.com/.
The project page and downloads are at http://www.bitbucket.org/cleonello/jqplot/.
Below are a few examples to demonstrate jqPlot usage. These plots are shown as static images. Many more examples of dynamically rendered plots can be seen on the test and examples pages here: ../../tests/.
Include the Files
jqPlot requires jQuery (1.4+ required for certain features). jQuery is included in the distribution. To use jqPlot include jquery, the jqPlot jQuery plugin, jqPlot css file and optionally the excanvas script for IE support in your web page. Note, excanvas is required only for IE versions below 9. IE 9 includes native support for the canvas element and does not require excanvas:
<!--[if lt IE 9]><script language="javascript" type="text/javascript" src="excanvas.js"></script><![endif]--> +<script language="javascript" type="text/javascript" src="jquery.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.jqplot.min.js"></script> <link rel="stylesheet" type="text/css" href="jquery.jqplot.css" />Add a plot container
Add a container (target) to your web page where you want your plot to show up. Be sure to give your target a width and a height:
<div id="chartdiv" style="height:400px;width:300px; "></div>Create a plot
Then, create the actual plot by calling the $.jqplot plugin with the id of your target and some data:
$.jqplot('chartdiv', [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]]);Which will produce a chart like:
Plot Options
You can customize the plot by passing options to the $.jqplot function. Options are described in jqPlot Options in the jqPlotOptions.txt file. An example of options usage:
$.jqplot('chartdiv', [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]], { title:'Exponential Line', @@ -20,7 +20,7 @@ if (browserType) {document.write("");if (browserV series:[{color:'#5FAB78'}] });Which will produce a plot like:
Using Plugins
You can use jqPlot plugins (that is, plugins to the jqPlot plugin) by including them in your html after you include the jqPlot plugin. Here is how to include the log axis plugin:
<link rel="stylesheet" type="text/css" href="jquery.jqplot.css" /> <!--[if IE]><script language="javascript" type="text/javascript" src="excanvas.js"></script><![endif]--> -<script language="javascript" type="text/javascript" src="jquery-1.4.4.min.js"></script> +<script language="javascript" type="text/javascript" src="jquery.min.js"></script> <script language="javascript" type="text/javascript" src="jquery.jqplot.min.js"></script> <script language="javascript" type="text/javascript" src="jqplot.logAxisRenderer.js"></script>Important note: For jqplot builds r529 and above (0.9.7r529 and higher), you must explicitly enable plugins via either the { show: true } plugin option to the plot or by using the $.jqplot.config.enablePlugins = true; config options set on the page before plot creation. Only plugins that can be immediately active upon loading are affected. This includes non-renderer plugins like cursor, dragable, highlighter, and trendline.
Here is a the same $.jqplot call but with a log y axis:
$.jqplot('chartdiv', [[[1, 2],[3,5.12],[5,13.1],[7,33.6],[9,85.9],[11,219.9]]], { title:'Exponential Line', @@ -35,10 +35,10 @@ if (browserType) {document.write("");if (browserV- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/Classes.html b/phpgwapi/js/jquery/jqplot/docs/index/Classes.html index af33314d67..a58325daa4 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/Classes.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/Classes.html @@ -11,53 +11,53 @@ if (browserType) {document.write("");if (browserV -Class Index- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/Files.html b/phpgwapi/js/jquery/jqplot/docs/index/Files.html index 05b39b6f32..eba3378cbd 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/Files.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/Files.html @@ -11,17 +11,17 @@ if (browserType) {document.write("Class IndexjQuery function called by the user to create a plot.Renderer to place labels on the axes.A “tick” object showing the value of a tick/gridline on the plot.A plugin renderer for jqPlot to draw a bar plot.Renderer which draws lines as stacked bezier curves.Plugin renderer to draw a x-y block chart.Plugin renderer to draw a bubble chart.Renderer to draw axis labels with a canvas element to support advanced featrues such as rotated text.Renderer to draw axis ticks with a canvas element to support advanced featrues such as rotated text.The default jqPlot grid renderer, creating a grid on a canvas element.A plugin for jqPlot to render a category style axis, with equal pixel spacing between y data values of a series.Data Renderer function which converts a custom JSON data object into jqPlot data format.Plugin class representing the cursor as displayed on the plot.A plugin for a jqPlot to render an axis as a series of date values.The default title renderer for jqPlot.Legend Renderer specific to donut plots.Plugin renderer to draw a donut chart.Plugin to make plotted points dragable by the user.Legend Renderer specific to funnel plots.Plugin renderer to draw a funnel chart.Plugin which will highlight data points when they are moused over.The default jqPlot axis renderer, creating a numeric axis.The default line renderer for jqPlot, this class has no options beyond the Series class.A plugin for a jqPlot to render a logarithmic axis.The default jqPlot marker renderer, rendering the points on the line.An axis renderer for a Mekko chart.Legend renderer used by mekko charts with options for controlling number or rows and columns as well as placement outside of plot area.Draws a Mekko style chart which shows 3 dimensional data on a 2 dimensional graph.Plugin renderer to draw a meter gauge chart.jqPlot Plugin to draw Open Hi Low Close, Candlestick and Hi Low Close charts.Legend Renderer specific to pie plots.Plugin renderer to draw a pie chart.Plugin for putting labels at the data points.The default jqPlot shadow renderer, rendering shadows behind shapes.The default jqPlot shape renderer.Theme Engine provides a programatic way to change some of the more common jqplot styling options such as fonts, colors and grid options.+Plugin which will automatically compute and draw trendlines for plotted data.jQuery namespace to attach functions to jQuery elements.jQuery function called by the user to create a plot.Renderer to place labels on the axes.A “tick” object showing the value of a tick/gridline on the plot.A plugin renderer for jqPlot to draw a bar plot.Renderer which draws lines as stacked bezier curves.Plugin renderer to draw a x-y block chart.Plugin renderer to draw a bubble chart.Renderer to draw axis labels with a canvas element to support advanced featrues such as rotated text.Renderer to draw axis ticks with a canvas element to support advanced featrues such as rotated text.The default jqPlot grid renderer, creating a grid on a canvas element.A plugin for jqPlot to render a category style axis, with equal pixel spacing between y data values of a series.Data Renderer function which converts a custom JSON data object into jqPlot data format.Plugin class representing the cursor as displayed on the plot.A plugin for a jqPlot to render an axis as a series of date values.The default title renderer for jqPlot.Legend Renderer specific to donut plots.Plugin renderer to draw a donut chart.Plugin to make plotted points dragable by the user.Legend Renderer specific to funnel plots.Plugin renderer to draw a funnel chart.Plugin which will highlight data points when they are moused over.The default jqPlot axis renderer, creating a numeric axis.The default line renderer for jqPlot, this class has no options beyond the Series class.A plugin for a jqPlot to render a logarithmic axis.The default jqPlot marker renderer, rendering the points on the line.An axis renderer for a Mekko chart.Legend renderer used by mekko charts with options for controlling number or rows and columns as well as placement outside of plot area.Draws a Mekko style chart which shows 3 dimensional data on a 2 dimensional graph.Plugin renderer to draw a meter gauge chart.jqPlot Plugin to draw Open Hi Low Close, Candlestick and Hi Low Close charts.Legend Renderer specific to pie plots.Plugin renderer to draw a pie chart.Plugin for putting labels at the data points.The default jqPlot shadow renderer, rendering shadows behind shapes.The default jqPlot shape renderer.Theme Engine provides a programatic way to change some of the more common jqplot styling options such as fonts, colors and grid options.-Plugin which will automatically compute and draw trendlines for plotted data.+An individual axis object.-An individual axis object.A straight dashed horizontal line.+A straight dashed vertical line.A straight dashed horizontal line.-A straight dashed vertical line.+Object representing the grid on which the plot is drawn.-Object representing the grid on which the plot is drawn.+A straight horizontal line.-A straight horizontal line.+Plot object returned by call to $.jqplot.-Plot object returned by call to $.jqplot.Legend object.+A straight line.Legend object.-A straight line.+An individual data series object.-An individual data series object.+Plot Title object.-Plot Title object.+A straight vertical line.A straight vertical line.");if (browserV -File Index+
J jqplot. enhancedLegendRenderer.js - + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/Functions.html b/phpgwapi/js/jquery/jqplot/docs/index/Functions.html index 9212f4678d..e72ca5485b 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/Functions.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/Functions.html @@ -11,7 +11,7 @@ if (browserType) {document.write("File Index
J jqplot. enhancedLegendRenderer.js jqplot. pyramidAxisRenderer.js jqplot. pyramidRenderer.js ");if (browserV -Function Index+
C copy, $.jqplot. ThemeEngine D destroy, jqPlot draw drawSeries, jqPlot G get, $.jqplot. ThemeEngine getThemeNames, $.jqplot. ThemeEngine getThemes, $.jqplot. ThemeEngine I init, jqPlot M makeGridData moveBlock, $.jqplot. BlockRenderer moveSeriesToBack, jqPlot moveSeriesToFront, jqPlot N newTheme, $.jqplot. ThemeEngine R redraw, jqPlot reInitialize, jqPlot remove, $.jqplot. ThemeEngine rename, $.jqplot. ThemeEngine replot, jqPlot resetAxesScale, jqPlot restoreOriginalSeriesOrder, jqPlot restorePreviousSeriesOrder, jqPlot S setGridData Z zoomProxy, $.jqplot. Cursor.$.jqplot. Cursor Function Index
C copy, $.jqplot. ThemeEngine D destroy, jqPlot draw drawSeries, jqPlot G get, $.jqplot. ThemeEngine getThemeNames, $.jqplot. ThemeEngine getThemes, $.jqplot. ThemeEngine I init, jqPlot M makeGridData moveBlock, $.jqplot. BlockRenderer moveSeriesToBack, jqPlot moveSeriesToFront, jqPlot N newTheme, $.jqplot. ThemeEngine R redraw, jqPlot reInitialize, jqPlot remove, $.jqplot. ThemeEngine rename, $.jqplot. ThemeEngine replot, jqPlot resetAxesScale, jqPlot restoreOriginalSeriesOrder, jqPlot restorePreviousSeriesOrder, jqPlot S setGridData Z zoomProxy, $.jqplot. Cursor.$.jqplot. Cursor @@ -29,31 +29,31 @@ if (browserType) {document.write("Create a copy of an existing theme in the themeEngine, adding it the themeEngine.
$.jqplot.ThemeEngine.prototype.copy = function ( sourceName, targetName, obj ) ");if (browserV -- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/General.html b/phpgwapi/js/jquery/jqplot/docs/index/General.html index 51839b4476..d5c2ec2bcb 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/General.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/General.html @@ -11,29 +11,25 @@ if (browserType) {document.write("converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.BezierCurveRenderer.prototype.makeGridData = function( data, plot ) converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.LineRenderer.prototype.makeGridData = function( data, plot ) converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.MekkoRenderer.prototype.makeGridData = function( data, plot ) Moves an individual block.
this.moveBlock = function ( idx, x, y, duration ) This method requires jQuery 1.4+ Moves the specified series canvas behind all other series canvases.
this.moveSeriesToBack = function ( idx ) +This method requires jQuery 1.4+ Moves the specified series canvas in front of all other series canvases.
this.moveSeriesToFront = function ( idx ) converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.BezierCurveRenderer.prototype.makeGridData = function( data, plot ) converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.MekkoRenderer.prototype.makeGridData = function( data, plot ) Moves an individual block.
this.moveBlock = function ( idx, x, y, duration ) This method requires jQuery 1.4+ Moves the specified series canvas behind all other series canvases.
this.moveSeriesToBack = function ( idx ) -This method requires jQuery 1.4+ Moves the specified series canvas in front of all other series canvases.
this.moveSeriesToFront = function ( idx ) +Create a new theme based on the default theme, adding it the themeEngine.
$.jqplot.ThemeEngine.prototype.newTheme = function( name, obj ) -Create a new theme based on the default theme, adding it the themeEngine.
$.jqplot.ThemeEngine.prototype.newTheme = function( name, obj ) Empties the plot target div and redraws the plot.
this.redraw = function( clear ) reinitialize plot for replotting.
this.reInitialize = function () Remove the given theme from the themeEngine.
$.jqplot.ThemeEngine.prototype.remove = function( name ) Rename a theme.
$.jqplot.ThemeEngine.prototype.rename = function ( oldName, newName ) Does a reinitialization of the plot followed by a redraw.
this.replot = function( options ) Reset the specified axes min, max, numberTicks and tickInterval properties to null or reset these properties on all axes if no list of axes is provided.
this.resetAxesScale = function( axes, options ) This method requires jQuery 1.4+ Restore the series canvas order to its original order when the plot was created.
this.restoreOriginalSeriesOrder = function () +This method requires jQuery 1.4+ Restore the series canvas order to its previous state.
this.restorePreviousSeriesOrder = function () Empties the plot target div and redraws the plot.
this.redraw = function( clear ) reinitialize plot for replotting.
this.reInitialize = function () Remove the given theme from the themeEngine.
$.jqplot.ThemeEngine.prototype.remove = function( name ) Rename a theme.
$.jqplot.ThemeEngine.prototype.rename = function ( oldName, newName ) Does a reinitialization of the plot followed by a redraw.
this.replot = function( options ) Reset the specified axes min, max, numberTicks and tickInterval properties to null or reset these properties on all axes if no list of axes is provided.
this.resetAxesScale = function( axes, options ) This method requires jQuery 1.4+ Restore the series canvas order to its original order when the plot was created.
this.restoreOriginalSeriesOrder = function () -This method requires jQuery 1.4+ Restore the series canvas order to its previous state.
this.restorePreviousSeriesOrder = function () converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.BezierCurveRenderer.prototype.setGridData = function( plot ) converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.LineRenderer.prototype.setGridData = function( plot ) +converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.MekkoRenderer.prototype.setGridData = function( plot ) converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.BezierCurveRenderer.prototype.setGridData = function( plot ) -converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.MekkoRenderer.prototype.setGridData = function( plot ) +links targetPlot to controllerPlot so that plot zooming of targetPlot will be controlled by zooming on the controllerPlot.
$.jqplot.Cursor.zoomProxy = function( targetPlot, controllerPlot ) links targetPlot to controllerPlot so that plot zooming of targetPlot will be controlled by zooming on the controllerPlot.
$.jqplot.Cursor.zoomProxy = function( targetPlot, controllerPlot ) ");if (browserV -Index- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/General2.html b/phpgwapi/js/jquery/jqplot/docs/index/General2.html index aa7f4c85bf..e2dacf2c89 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/General2.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/General2.html @@ -11,25 +11,25 @@ if (browserType) {document.write("IndexjQuery function called by the user to create a plot.Renderer to place labels on the axes.A “tick” object showing the value of a tick/gridline on the plot.A plugin renderer for jqPlot to draw a bar plot.Renderer which draws lines as stacked bezier curves.Plugin renderer to draw a x-y block chart.Plugin renderer to draw a bubble chart.Renderer to draw axis labels with a canvas element to support advanced featrues such as rotated text.Renderer to draw axis ticks with a canvas element to support advanced featrues such as rotated text.The default jqPlot grid renderer, creating a grid on a canvas element.A plugin for jqPlot to render a category style axis, with equal pixel spacing between y data values of a series.Data Renderer function which converts a custom JSON data object into jqPlot data format.Plugin class representing the cursor as displayed on the plot.A plugin for a jqPlot to render an axis as a series of date values.The default title renderer for jqPlot.Legend Renderer specific to donut plots.Plugin renderer to draw a donut chart.Plugin to make plotted points dragable by the user.Legend Renderer specific to funnel plots.Plugin renderer to draw a funnel chart.Plugin which will highlight data points when they are moused over.The default jqPlot axis renderer, creating a numeric axis.The default line renderer for jqPlot, this class has no options beyond the Series class.A plugin for a jqPlot to render a logarithmic axis.The default jqPlot marker renderer, rendering the points on the line.An axis renderer for a Mekko chart.Legend renderer used by mekko charts with options for controlling number or rows and columns as well as placement outside of plot area.Draws a Mekko style chart which shows 3 dimensional data on a 2 dimensional graph.Plugin renderer to draw a meter gauge chart.jqPlot Plugin to draw Open Hi Low Close, Candlestick and Hi Low Close charts.Legend Renderer specific to pie plots.Plugin renderer to draw a pie chart.Plugin for putting labels at the data points.The default jqPlot shadow renderer, rendering shadows behind shapes.The default jqPlot shape renderer.Theme Engine provides a programatic way to change some of the more common jqplot styling options such as fonts, colors and grid options.+Plugin which will automatically compute and draw trendlines for plotted data.jQuery namespace to attach functions to jQuery elements.jQuery function called by the user to create a plot.Renderer to place labels on the axes.A “tick” object showing the value of a tick/gridline on the plot.A plugin renderer for jqPlot to draw a bar plot.Renderer which draws lines as stacked bezier curves.Plugin renderer to draw a x-y block chart.Plugin renderer to draw a bubble chart.Renderer to draw axis labels with a canvas element to support advanced featrues such as rotated text.Renderer to draw axis ticks with a canvas element to support advanced featrues such as rotated text.The default jqPlot grid renderer, creating a grid on a canvas element.A plugin for jqPlot to render a category style axis, with equal pixel spacing between y data values of a series.Data Renderer function which converts a custom JSON data object into jqPlot data format.Plugin class representing the cursor as displayed on the plot.A plugin for a jqPlot to render an axis as a series of date values.The default title renderer for jqPlot.Legend Renderer specific to donut plots.Plugin renderer to draw a donut chart.Plugin to make plotted points dragable by the user.Legend Renderer specific to funnel plots.Plugin renderer to draw a funnel chart.Plugin which will highlight data points when they are moused over.The default jqPlot axis renderer, creating a numeric axis.The default line renderer for jqPlot, this class has no options beyond the Series class.A plugin for a jqPlot to render a logarithmic axis.The default jqPlot marker renderer, rendering the points on the line.An axis renderer for a Mekko chart.Legend renderer used by mekko charts with options for controlling number or rows and columns as well as placement outside of plot area.Draws a Mekko style chart which shows 3 dimensional data on a 2 dimensional graph.Plugin renderer to draw a meter gauge chart.jqPlot Plugin to draw Open Hi Low Close, Candlestick and Hi Low Close charts.Legend Renderer specific to pie plots.Plugin renderer to draw a pie chart.Plugin for putting labels at the data points.The default jqPlot shadow renderer, rendering shadows behind shapes.The default jqPlot shape renderer.Theme Engine provides a programatic way to change some of the more common jqplot styling options such as fonts, colors and grid options.-Plugin which will automatically compute and draw trendlines for plotted data.Pointer to currently active theme
this.activeTheme=null called at the end of legend draw, so plugins can add rows to the legend table.alpha transparency of shadow stroke.
this.alpha = 0.07 angle of text, measured clockwise from x axis.
this.angle = 0 angle of text, measured clockwise from x axis.
this.angle = 0 Angle of the shadow in degrees.
this.angle = 45 Autoscale the axis min and max values to provide sensible tick spacing.
this.autoscale = false True to scale the bubble radius based on plot size.
this.autoscaleBubbles = true Multiplier the bubble size if autoscaleBubbles is true.
this.autoscaleMultiplier = 1.0 Factor which decreases bubble size based on how many bubbles on on the chart.
this.autoscalePointsFactor = -0.07 See jqPlot Options for a list of options available thorugh the options object (not complete yet!)up to 4 axes are supported, each with it’s own options, See Axis for axis specific options.
this.axes = {xaxis: new Axis('xaxis'), yaxis: new Axis('yaxis'), x2axis: new Axis('x2axis'), y2axis: new Axis('y2axis'), y3axis: new Axis('y3axis'), y4axis: new Axis('y4axis'), y5axis: new Axis('y5axis'), y6axis: new Axis('y6axis'), y7axis: new Axis('y7axis'), y8axis: new Axis('y8axis'), y9axis: new Axis('y9axis')} default options that will be applied to all axes.An individual axis object.+Default properties which will be applied directly to the series.Pointer to currently active theme
this.activeTheme=null called at the end of legend draw, so plugins can add rows to the legend table.alpha transparency of shadow stroke.
this.alpha = 0.07 angle of text, measured clockwise from x axis.
this.angle = 0 angle of text, measured clockwise from x axis.
this.angle = 0 Angle of the shadow in degrees.
this.angle = 45 DEPRECATED the default scaling algorithm produces superior results.
this.autoscale = false True to scale the bubble radius based on plot size.
this.autoscaleBubbles = true Multiplier the bubble size if autoscaleBubbles is true.
this.autoscaleMultiplier = 1.0 Factor which decreases bubble size based on how many bubbles on on the chart.
this.autoscalePointsFactor = -0.07 See jqPlot Options for a list of options available thorugh the options object (not complete yet!)up to 4 axes are supported, each with it’s own options, See Axis for axis specific options.
this.axes = {xaxis: new Axis('xaxis'), yaxis: new Axis('yaxis'), x2axis: new Axis('x2axis'), y2axis: new Axis('y2axis'), y3axis: new Axis('y3axis'), y4axis: new Axis('y4axis'), y5axis: new Axis('y5axis'), y6axis: new Axis('y6axis'), y7axis: new Axis('y7axis'), y8axis: new Axis('y8axis'), y9axis: new Axis('y9axis'), yMidAxis: new Axis('yMidAxis')} default options that will be applied to all axes.An individual axis object.-Default properties which will be applied directly to the series.background color of the inside of the gauge.
this.background = "#efefef" css spec for the background color.
this.background = '#fffdf6' css spec for the background of the legend box.
this.background ‘vertical’ = up and down bars, ‘horizontal’ = side to side bars
this.barDirection = 'vertical' options object to pass to the bar label renderer.
this.barLabelOptions = {} renderer to use to draw labels under each bar.
this.barLabelRenderer = $.jqplot.AxisLabelRenderer array of labels to put under each bar.
this.barLabels = this.barLabels || [] Number of pixels between groups of bars at adjacent axis values.
this.barMargin = 10 Number of pixels between adjacent bars at the same axis value.
this.barPadding = 8 Width of the bar in pixels (auto by devaul).
this.barWidth = null width of the candlestick body in pixels.
this.bodyWidth = 'auto' css spec for the border around the legend box.
this.border color of the borders between areas on the chart
this.borderColor = null color of the border adjacent to the axis.
this.borderColor = null css spec for the color of the grid border.
this.borderColor = '#999999' width of line stroked at the border of the axis.
this.borderWidth = null width of the border in pixels.
this.borderWidth = 2.0 Wether line segments should be be broken at null value.
this.breakOnNull = false EXPERIMENTAL!!
this.breakPoints = null Label to use at the axis break if breakPoints are specified.
this.breakTickLabel = "&asymp This option requires jQuery 1.4+ True to bring the series of the highlighted point to the front of other series.
this.bringSeriesToFront = false Alpha transparency to apply to all bubbles in this series.
this.bubbleAlpha = 1.0 - - - -True to color the bubbles with gradient fills instead of flat colors.
this.bubbleGradients = false true to render chart as candleStick.
this.candleStick = false See Change Logtrue to cear a rectangle.
this.clearRect = false Will reset plot zoom if single click on plot without drag.
this.clickReset = false color of the close price tick mark.
this.closeColor = null CSS color spec for the dragged point (and adjacent line segment or bar).
this.color color of marker.
this.color = '#666666' CSS color spec for the trend line.
this.color = '#666666' color of the linecolor of the linecolor of the linecolor of the linecss color spec for the series
this.color color of the lineTrue to limit actual zoom area to edges of grid, even when zooming outside of plot area.
this.constrainOutsideZoom = true Constrain dragging motion to an axis or to none.
this.constrainTo = 'none' ‘none’, ‘x’ or ‘y’
this.constrainZoomTo = 'none' Create a copy of an existing theme in the themeEngine, adding it the themeEngine.
$.jqplot.ThemeEngine.prototype.copy = function ( sourceName, targetName, obj ) Copyright © 2009-2011 Chris Leonello jqPlot is currently available for use in all personal or commercial projects under both the MIT and GPL version 2.0 licenses.default css styles that will be applied to all data blocks.
this.css = {padding:'2px', border:'1px solid #999', textAlign:'center'} +Format string used in the cursor legend.
this.cursorLegendFormatString = $.jqplot.Cursor.cursorLegendFormatString background color of the inside of the gauge.
this.background = "#efefef" css spec for the background color.
this.background = '#fffdf6' css spec for the background of the legend box.
this.background Data used to draw error bands or confidence intervals above/below a line.
this.renderer.bandData = [] Banding around line, e.g error bands or confidence intervals.‘vertical’ = up and down bars, ‘horizontal’ = side to side bars
this.barDirection = 'vertical' options object to pass to the bar label renderer.
this.barLabelOptions = {} renderer to use to draw labels under each bar.
this.barLabelRenderer = $.jqplot.AxisLabelRenderer array of labels to put under each bar.
this.barLabels = this.barLabels || [] Number of pixels between groups of bars at adjacent axis values.
this.barMargin = 10
this.barPadding = 10 Number of pixels between adjacent bars at the same axis value.
this.barPadding = 8 Width of the bar in pixels (auto by devaul).
this.barWidth = null CSS color spec for the baseline.
this.baselineColor = null CSS color spec for the baseline.
this.baselineColor = null CSS color spec for the baseline.
this.baselineColor = null width of the baseline in pixels.
this.baselineWidth = null width of the baseline in pixels.
this.baselineWidth = null width of the baseline in pixels.
this.baselineWidth = null width of the candlestick body in pixels.
this.bodyWidth = 'auto' css spec for the border around the legend box.
this.border color of the borders between areas on the chart
this.borderColor = null color of the border adjacent to the axis.
this.borderColor = null css spec for the color of the grid border.
this.borderColor = '#999999' width of line stroked at the border of the axis.
this.borderWidth = null width of the border in pixels.
this.borderWidth = 2.0 Wether line segments should be be broken at null value.
this.breakOnNull = false EXPERIMENTAL!!
this.breakPoints = null Label to use at the axis break if breakPoints are specified.
this.breakTickLabel = "&asymp This option requires jQuery 1.4+ True to bring the series of the highlighted point to the front of other series.
this.bringSeriesToFront = false Alpha transparency to apply to all bubbles in this series.
this.bubbleAlpha = 1.0 True to color the bubbles with gradient fills instead of flat colors.
this.bubbleGradients = false ");if (browserV -Index+
D DashedHorizontalLine DashedVerticalLine dashPattern data, jqPlot dataLabelCenterOn, $.jqplot. PieRenderer dataLabelFormatString dataLabelNudge dataLabelPositionFactor dataLabels dataLabelThreshold dblClickReset, $.jqplot. Cursor defaultAxisStart, jqPlot depth, $.jqplot. shadowRenderer destroy, jqPlot diameter disableIEFading disableStack, Series downBodyColor, $.jqplot. OHLCRenderer draw drawBorder, Grid drawGridlines, Grid drawSeries, jqPlot E edgeTolerance, $.jqplot. PointLabels enableFontSupport escapeHtml escapeHTML eventListenerHooks, $.jqplot.$.jqplot F fadeTooltip, $.jqplot. Highlighter fill fillAlpha, Series fillAndStroke, Series fillAxis, Series fillColor, Series fillDownBody, $.jqplot. OHLCRenderer fillRect, $.jqplot. shapeRenderer fillStyle, $.jqplot. shapeRenderer fillToValue, Series fillToZero, Series fillUpBody, $.jqplot. OHLCRenderer followMouse, $.jqplot. Cursor fontFamily fontSize fontStretch fontWeight forceTickAt0, $.jqplot. LinearAxisRenderer forceTickAt100, $.jqplot. LinearAxisRenderer formatString formatter Functions - + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/General3.html b/phpgwapi/js/jquery/jqplot/docs/index/General3.html index b420086157..986d231e01 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/General3.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/General3.html @@ -11,33 +11,25 @@ if (browserType) {document.write("Index-
C candleStick, $.jqplot. OHLCRenderer Change Log Changes clearRect, $.jqplot. shapeRenderer clickReset, $.jqplot. Cursor closeColor, $.jqplot. OHLCRenderer color constrainOutsideZoom, $.jqplot. Cursor constrainSmoothing, $.jqplot. LineRenderer constrainTo, $.jqplot. Dragable constrainZoomTo, $.jqplot. Cursor copy, $.jqplot. ThemeEngine Copyright&License css, $.jqplot. BlockRenderer cursorLegendFormatString, $.jqplot. Cursor D DashedHorizontalLine DashedVerticalLine dashPattern data, jqPlot dataLabelCenterOn, $.jqplot. PieRenderer dataLabelFormatString dataLabelNudge dataLabelPositionFactor dataLabels dataLabelThreshold dataRenderer, jqPlot dataRendererOptions, jqPlot dblClickReset, $.jqplot. Cursor defaultAxisStart, jqPlot depth, $.jqplot. shadowRenderer destroy, jqPlot diameter disableIEFading disableStack, Series downBodyColor, $.jqplot. OHLCRenderer draw drawBaseline drawBorder, Grid drawGridlines, Grid drawMajorGridlines, Axis drawMajorTickMarks, Axis drawMinorGridlines, Axis drawMinorTickMarks, Axis drawSeries, jqPlot E edgeTolerance, $.jqplot. PointLabels enableFontSupport escapeHtml escapeHTML eventListenerHooks, $.jqplot.$.jqplot A straight dashed horizontal line.A straight dashed vertical line.Array of line, space settings in pixels.
dashPattern: [8,8] } Array of line, space settings in pixels.
dashPattern: [8,8] } user’s data.
this.data = [] True to center the data label at its position.
this.dataLabelCenterOn = true Format string for data labels.
this.dataLabelFormatString = null Format string for data labels.
this.dataLabelFormatString = null Format string for data labels.
this.dataLabelFormatString = null Number of pixels to slide the label away from (+) or toward (-) the center of the pie.
this.dataLabelNudge = 0 Number of pixels to slide the label away from (+) or toward (-) the center of the pie.
this.dataLabelNudge = 2 A Multiplier (0-1) of the pie radius which controls position of label on slice.
this.dataLabelPositionFactor = 0.4 A Multiplier (0-1) of the pie radius which controls position of label on slice.
this.dataLabelPositionFactor = 0.52 Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent' Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent' Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent'
this.dataLabelThreshold = 3
this.dataLabelThreshold = 3 Threshhold in percentage (0-100) of pie area, below which no label will be displayed.
this.dataLabelThreshold = 3 Will reset plot zoom if double click on plot without drag.
this.dblClickReset = true 1-D data series are internally converted into 2-D [x,y] data point arrays by jqPlot.
this.defaultAxisStart = 1 how many times the shadow is stroked.
this.depth = 3 Releases all resources occupied by the plot
this.destroy = function() Outer diameter of the donut, auto computed by default
this.diameter = null Outer diameter of the meterGauge, auto computed by default
this.diameter = null Outer diameter of the pie, auto computed by default
this.diameter = null true to toggle series with a show/hide method only and not allow fading in/out.
this.disableIEFading = true true to not stack this series with other series in the plot.
this.disableStack = false Color of candlestick body on a “down” day.
this.downBodyColor = null draws an transparent black (i.e.
$.jqplot.ShadowRenderer.prototype.draw = function( ctx, points, options ) draws the shape.
$.jqplot.ShapeRenderer.prototype.draw = function( ctx, points, options ) Draws all elements of the plot into the container.
this.draw = function() True to draw border around grid.
this.drawBorder = true wether to draw the gridlines on the plot.
this.drawGridlines = true +Redraws all or just one series on the plot.
this.drawSeries = function( options, idx ) true to render chart as candleStick.
this.candleStick = false See Change Logtrue to cear a rectangle.
this.clearRect = false Will reset plot zoom if single click on plot without drag.
this.clickReset = false color of the close price tick mark.
this.closeColor = null color of the lineCSS color spec for the dragged point (and adjacent line segment or bar).
this.color color of lines at top and bottom of bands [default: series color].color of marker.
this.color = '#666666' CSS color spec for the trend line.
this.color = '#666666' css color spec for the series
this.color True to limit actual zoom area to edges of grid, even when zooming outside of plot area.
this.constrainOutsideZoom = true True to use a more accurate smoothing algorithm that will not overshoot any data points.
this.renderer.constrainSmoothing = true Constrain dragging motion to an axis or to none.
this.constrainTo = 'none' ‘none’, ‘x’ or ‘y’
this.constrainZoomTo = 'none' Create a copy of an existing theme in the themeEngine, adding it the themeEngine.
$.jqplot.ThemeEngine.prototype.copy = function ( sourceName, targetName, obj ) Copyright © 2009-2011 Chris Leonello jqPlot is currently available for use in all personal or commercial projects under both the MIT and GPL version 2.0 licenses.default css styles that will be applied to all data blocks.
this.css = {padding:'2px', border:'1px solid #999', textAlign:'center'} -Format string used in the cursor legend.
this.cursorLegendFormatString = $.jqplot.Cursor.cursorLegendFormatString Number of pixels that the label must be away from an axis boundary in order to be drawn.
this.edgeTolerance = -5 true to turn on native canvas font support in Mozilla 3.5+ and Safari 4+.
this.enableFontSupport = true true to turn on native canvas font support in Mozilla 3.5+ and Safari 4+.
this.enableFontSupport = true true to escape html in the box label.
this.escapeHtml = false True to escape html in bubble label text.
this.escapeHtml = true true to escape HTML entities in the label.
this.escapeHTML = false true to escape HTML entities in the label.
this.escapeHTML = false true to escape html entities in the labels.
this.escapeHTML = true +called at the end of plot drawing, binds listeners to the event canvas which lays on top of the grid area.A straight dashed horizontal line.A straight dashed vertical line.Array of line, space settings in pixels.
dashPattern: [8,8] } Array of line, space settings in pixels.
dashPattern: [8,8] } user’s data.
this.data = [] True to center the data label at its position.
this.dataLabelCenterOn = true Format string for data labels.
this.dataLabelFormatString = null Format string for data labels.
this.dataLabelFormatString = null Format string for data labels.
this.dataLabelFormatString = null Number of pixels to slide the label away from (+) or toward (-) the center of the pie.
this.dataLabelNudge = 0 Number of pixels to slide the label away from (+) or toward (-) the center of the pie.
this.dataLabelNudge = 2 A Multiplier (0-1) of the pie radius which controls position of label on slice.
this.dataLabelPositionFactor = 0.4 A Multiplier (0-1) of the pie radius which controls position of label on slice.
this.dataLabelPositionFactor = 0.52 Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent' Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent' Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent'
this.dataLabelThreshold = 3
this.dataLabelThreshold = 3 Threshhold in percentage (0-100) of pie area, below which no label will be displayed.
this.dataLabelThreshold = 3 A callable which can be used to preprocess data passed into the plot.
this.dataRenderer Options that will be passed to the dataRenderer.
this.dataRendererOptions Will reset plot zoom if double click on plot without drag.
this.dblClickReset = true 1-D data series are internally converted into 2-D [x,y] data point arrays by jqPlot.
this.defaultAxisStart = 1 how many times the shadow is stroked.
this.depth = 3 Releases all resources occupied by the plot
this.destroy = function() Outer diameter of the donut, auto computed by default
this.diameter = null Outer diameter of the meterGauge, auto computed by default
this.diameter = null Outer diameter of the pie, auto computed by default
this.diameter = null true to toggle series with a show/hide method only and not allow fading in/out.
this.disableIEFading = true true to not stack this series with other series in the plot.
this.disableStack = false Color of candlestick body on a “down” day.
this.downBodyColor = null draws an transparent black (i.e.
$.jqplot.ShadowRenderer.prototype.draw = function( ctx, points, options ) draws the shape.
$.jqplot.ShapeRenderer.prototype.draw = function( ctx, points, options ) Draws all elements of the plot into the container.
this.draw = function() True to draw the axis baseline.
this.drawBaseline = true True to draw the axis baseline.
this.drawBaseline = true True to draw the axis baseline.
this.drawBaseline = true True to draw the axis baseline.
this.drawBaseline = true True to draw border around grid.
this.drawBorder = true wether to draw the gridlines on the plot.
this.drawGridlines = true True to draw gridlines for major axis ticks.
this.drawMajorGridlines = true True to draw tick marks for major axis ticks.
this.drawMajorTickMarks = true True to draw gridlines for minor ticks.
this.drawMinorGridlines = false True to draw tick marks for minor ticks.
this.drawMinorTickMarks = true -Redraws all or just one series on the plot.
this.drawSeries = function( options, idx ) true = fade in/out tooltip, flase = show/hide tooltip
this.fadeTooltip = true true or false, wether to fil the slices.
this.fill = true true or false, wether to fill the areas.
this.fill = true true or false, wether to fil the slices.
this.fill = true whether to fill the shape.
this.fill = false whether to fill the shape.
this.fill = false true or false, wether to fill under lines or in bars.
this.fill = false Alpha transparency to apply to the fill under the line.
this.fillAlpha If true will stroke the line (with color this.color) as well as fill under it.
this.fillAndStroke = false Either ‘x’ or ‘y’.
this.fillAxis = 'y' CSS color spec to use for fill under line.
this.fillColor true to render a “down” day (close price lower than open price) with a filled candlestick body.
this.fillDownBody = true true to draw shape as a filled rectangle.
this.fillRect = false css color spec for the fill style.
this.fillStyle = '#999999' fill a filled series to this value on the fill axis.
this.fillToValue = 0 true will force bar and filled series to fill toward zero on the fill Axis.
this.fillToZero = false true to render an “up” day (close price greater than open price) with a filled candlestick body.
this.fillUpBody = false Tooltip follows the mouse, it is not at a fixed location.
this.followMouse = false css spec for the font-family css attribute.
this.fontFamily CSS spec for the font-family css attribute.
this.fontFamily = '"Trebuchet MS", Arial, Helvetica, sans-serif' css spec for the font-family css attribute.
this.fontFamily = '"Trebuchet MS", Arial, Helvetica, sans-serif' css font-family spec for the legend text.
this.fontFamily css font-family spec for the text.
this.fontFamily css spec for the font-size css attribute.
this.fontSize CSS spec for font size.
this.fontSize = '11pt' CSS spec for font size.
this.fontSize = '10pt' css spec for the font-size attribute.
this.fontSize css font-size spec for the legend text.
this.fontSize css font-size spec for the text.
this.fontSize Multiplier to condense or expand font width.
this.fontStretch = 1.0 Multiplier to condense or expand font width.
this.fontStretch = 1.0
this.fontWeight = 'normal' CSS spec for fontWeight
this.fontWeight = 'normal' This will ensure that there is always a tick mark at 0.
this.forceTickAt0 = false This will ensure that there is always a tick mark at 100.
this.forceTickAt100 = false string passed to the formatter.
this.formatString = '' string passed to the formatter.
this.formatString = '' alternative to tooltipFormatString will format the whole tooltip text, populating with x, y values as indicated by tooltipAxes option.
this.formatString = null string passed to the formatter.
this.formatString = '' A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter +A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter Number of pixels that the label must be away from an axis boundary in order to be drawn.
this.edgeTolerance = -5 true to turn on native canvas font support in Mozilla 3.5+ and Safari 4+.
this.enableFontSupport = true true to turn on native canvas font support in Mozilla 3.5+ and Safari 4+.
this.enableFontSupport = true true to escape html in the box label.
this.escapeHtml = false True to escape html in bubble label text.
this.escapeHtml = true True to escape special characters with their html entity equivalents in legend text.
this.escapeHtml = false True to escape special characters with their html entity equivalents in title text.
this.escapeHtml = false true to escape HTML entities in the label.
this.escapeHTML = false true to escape HTML entities in the label.
this.escapeHTML = false true to escape html entities in the labels.
this.escapeHTML = true called at the end of plot drawing, binds listeners to the event canvas which lays on top of the grid area.");if (browserV -Index+
G get, $.jqplot. ThemeEngine getThemeNames, $.jqplot. ThemeEngine getThemes, $.jqplot. ThemeEngine GPL Version 2 grid, jqPlot Grid gridLineColor, Grid gridLineWidth, Grid groups, $.jqplot. BarRenderer H hideZeros, $.jqplot. PointLabels highlightAlpha, $.jqplot. BubbleRenderer highlightColor, $.jqplot. LineRenderer highlightColors highlightMouseDown highlightMouseOver hlc, $.jqplot. OHLCRenderer Hooks, $.jqplot HorizontalLine hubRadius, $.jqplot. MeterGaugeRenderer I index, Series init, jqPlot innerDiameter, $.jqplot. DonutRenderer insertBreaks, $.jqplot. BlockRenderer intersectionThreshold, $.jqplot. Cursor intervalColors, $.jqplot. MeterGaugeRenderer intervalInnerRadius, $.jqplot. MeterGaugeRenderer intervalOuterRadius, $.jqplot. MeterGaugeRenderer intervals, $.jqplot. MeterGaugeRenderer Introduction isarc isMinorTick J jqPlot jqPlot Charts jqPlot CSS Customization jqPlot Options jqPlot Pugin Hooks, $.jqplot jqPlot Usage jqplot. enhancedLegendRenderer.js L label labelHeightAdjust, $.jqplot. MeterGaugeRenderer labelOptions, Axis labelPosition labelRenderer, Axis labels labelsFromSeries, $.jqplot. PointLabels legend, jqPlot Legend Line lineCap lineJoin lineWidth lineWidthAdjust, $.jqplot. Highlighter location looseZoom, $.jqplot. Cursor - + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/General4.html b/phpgwapi/js/jquery/jqplot/docs/index/General4.html index 7f6ea48807..71c376e400 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/General4.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/General4.html @@ -11,33 +11,29 @@ if (browserType) {document.write("Index-
F fadeTooltip fill fillAlpha, Series fillAndStroke, Series fillAxis, Series fillColor fillDownBody, $.jqplot. OHLCRenderer fillRect, $.jqplot. shapeRenderer fillStyle, $.jqplot. shapeRenderer fillToValue, Series fillToZero, Series fillUpBody, $.jqplot. OHLCRenderer followMouse, $.jqplot. Cursor fontFamily fontSize fontStretch fontWeight forceTickAt0, $.jqplot. LinearAxisRenderer forceTickAt100, $.jqplot. LinearAxisRenderer formatString formatter Functions G get, $.jqplot. ThemeEngine getThemeNames, $.jqplot. ThemeEngine getThemes, $.jqplot. ThemeEngine GPL Version 2 grid, jqPlot Grid gridLineColor, Grid gridLineWidth, Grid groups, $.jqplot. BarRenderer H hideZeros, $.jqplot. PointLabels highlightAlpha, $.jqplot. BubbleRenderer highlightColor, $.jqplot. LineRenderer highlightColors highlightMouseDown highlightMouseOver hlc, $.jqplot. OHLCRenderer Hooks, $.jqplot HorizontalLine hubRadius, $.jqplot. MeterGaugeRenderer Get and return the named theme or the active theme if no name given.
$.jqplot.ThemeEngine.prototype.get = function( name ) Return the list of theme names in this manager in alpha-numerical order.
$.jqplot.ThemeEngine.prototype.getThemeNames = function() Return a list of themes in alpha-numerical order by name.
$.jqplot.ThemeEngine.prototype.getThemes = function() GNU GENERAL PUBLIC LICENSE Version 2, June 1991See Grid for grid specific options.
this.grid = new Grid() Object representing the grid on which the plot is drawn.color of the grid lines.
this.gridLineColor = '#cccccc' width of the grid lines.
this.gridLineWidth = 1.0 +group bars into this many groups
this.groups = 1 true = fade in/out tooltip, flase = show/hide tooltiptrue = fade in/out tooltip, flase = show/hide tooltip
this.fadeTooltip = true True to fill the bars.
this.fill = true true or false, wether to fil the slices.
this.fill = true true or false, wether to fill the areas.
this.fill = true True to fill area between bands [default: true].true or false, wether to fil the slices.
this.fill = true whether to fill the shape.
this.fill = false whether to fill the shape.
this.fill = false true or false, wether to fill under lines or in bars.
this.fill = false Alpha transparency to apply to the fill under the line.
this.fillAlpha If true will stroke the line (with color this.color) as well as fill under it.
this.fillAndStroke = false Either ‘x’ or ‘y’.
this.fillAxis = 'y' css color spec for filled area.CSS color spec to use for fill under line.
this.fillColor true to render a “down” day (close price lower than open price) with a filled candlestick body.
this.fillDownBody = true true to draw shape as a filled rectangle.
this.fillRect = false css color spec for the fill style.
this.fillStyle = '#999999' fill a filled series to this value on the fill axis.
this.fillToValue = 0 true will force bar and filled series to fill toward zero on the fill Axis.
this.fillToZero = false true to render an “up” day (close price greater than open price) with a filled candlestick body.
this.fillUpBody = false Tooltip follows the mouse, it is not at a fixed location.
this.followMouse = false css spec for the font-family css attribute.
this.fontFamily CSS spec for the font-family css attribute.
this.fontFamily = '"Trebuchet MS", Arial, Helvetica, sans-serif' css spec for the font-family css attribute.
this.fontFamily = '"Trebuchet MS", Arial, Helvetica, sans-serif' css font-family spec for the legend text.
this.fontFamily css font-family spec for the text.
this.fontFamily css spec for the font-size css attribute.
this.fontSize CSS spec for font size.
this.fontSize = '11pt' CSS spec for font size.
this.fontSize = '10pt' css spec for the font-size attribute.
this.fontSize css font-size spec for the legend text.
this.fontSize css font-size spec for the text.
this.fontSize Multiplier to condense or expand font width.
this.fontStretch = 1.0 Multiplier to condense or expand font width.
this.fontStretch = 1.0
this.fontWeight = 'normal' CSS spec for fontWeight
this.fontWeight = 'normal' This will ensure that there is always a tick mark at 0.
this.forceTickAt0 = false This will ensure that there is always a tick mark at 100.
this.forceTickAt100 = false string passed to the formatter.
this.formatString = '' string passed to the formatter.
this.formatString = '' alternative to tooltipFormatString will format the whole tooltip text, populating with x, y values as indicated by tooltipAxes option.
this.formatString = null string passed to the formatter.
this.formatString = '' A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter -A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter true to not show a label for a value which is 0.
this.hideZeros = false Alpha transparency to apply when highlighting bubble.
this.highlightAlpha = null color to use when highlighting an area on a filled plot.
this.highlightColor = null an array of colors to use when highlighting a bar.
this.highlightColors = [] An array of colors to use when highlighting a slice.
this.highlightColors = [] an array of colors to use when highlighting a slice.
this.highlightColors = [] array of colors to use when highlighting an area.
this.highlightColors = [] an array of colors to use when highlighting a slice.
this.highlightColors = [] True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a bubble.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a area.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over an area on a filled plot.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight bubbles when moused over.
this.highlightMouseOver = true True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight area when moused over.
this.highlightMouseOver = true True to highlight area on a filled plot when moused over.
this.highlightMouseOver = true True to highlight slice when moused over.
this.highlightMouseOver = true true if is a hi-low-close chart (no open price).
this.hlc = false A straight horizontal line.+Radius of the hub at the bottom center of gauge which the needle attaches to.
this.hubRadius = null Get and return the named theme or the active theme if no name given.
$.jqplot.ThemeEngine.prototype.get = function( name ) Return the list of theme names in this manager in alpha-numerical order.
$.jqplot.ThemeEngine.prototype.getThemeNames = function() Return a list of themes in alpha-numerical order by name.
$.jqplot.ThemeEngine.prototype.getThemes = function() GNU GENERAL PUBLIC LICENSE Version 2, June 1991See Grid for grid specific options.
this.grid = new Grid() Object representing the grid on which the plot is drawn.color of the grid lines.
this.gridLineColor = '#cccccc' width of the grid lines.
this.gridLineWidth = 1.0 -group bars into this many groups
this.groups = 1 0 based index of this series in the plot series array.
this.index sets the plot target, checks data and applies user options to plot.
this.init = function( target, data, options ) Inner diameter of the donut, auto calculated by default.
this.innerDiameter = null true to turn spaces in data block label into html breaks br /.
this.insertBreaks = true pixel distance from data point or marker to consider cursor lines intersecting with point.
this.intersectionThreshold = 2 Array of colors to use for the intervals.
this.intervalColors = [ "#4bb2c5", "#EAA228", "#c5b47f", "#579575", "#839557", "#958c12", "#953579", "#4b5de4", "#d8b83f", "#ff5800", "#0085cc", "#c747a3", "#cddf54", "#FBD178", "#26B4E3", "#bd70c7"] Radius of the inner circle of the interval ring.
this.intervalInnerRadius = null Radius of the outer circle of the interval ring.
this.intervalOuterRadius = null Array of ranges to be drawn around the gauge.
this.intervals = [] jqPlot requires jQuery (1.4+ required for certain features).wether the shadow is an arc or not.
this.isarc = false wether the shadow is an arc or not.
this.isarc = false if this is a minor tick.
this.isMinorTick = false - - - -if this is a minor tick.
this.isMinorTick = false Plot object returned by call to $.jqplot.Pure JavaScript plotting plugin for jQuery.Much of the styling of jqPlot is done by css.- - - -This document is out of date.The text or html for the label.
this.label = '' label for the axis.
this.label = '' A gauge label like ‘kph’ or ‘Volts’
this.label = null Label for the trend line to use in the legend.
this.label = '' Label for the axis
this.label = null Line label to use in the legend.
this.label = '' Number of Pixels to offset the label up (-) or down (+) from its default position.
this.labelHeightAdjust = 0 Options passed to the label renderer.
this.labelOptions = {} ‘auto’, ‘start’, ‘middle’ or ‘end’.
this.labelPosition = 'auto' Where to position the label, either ‘inside’ or ‘bottom’.
this.labelPosition = 'inside' A class of a rendering engine for creating an axis label.
this.labelRenderer = $.jqplot.AxisLabelRenderer array of arrays of labels, one array for each series.
this.labels = [] Array of labels to use.
this.labels = [] true to use labels within data point arrays.
this.labelsFromSeries = false see $.jqplot.TableLegendRenderer
this.legend = new Legend() Legend object.A straight line.how ends of the shadow line are rendered.
this.lineCap = 'round' how ends of the shadow line are rendered.
this.lineCap = 'round' Type of ending placed on the line [‘round’, ‘butt’, ‘square’]Type of ending placed on the line [‘round’, ‘butt’, ‘square’]Type of ending placed on the line [‘round’, ‘butt’, ‘square’]Type of ending placed on the line [‘round’, ‘butt’, ‘square’]Canvas lineCap style at ends of line.
this.lineCap = 'round' Type of ending placed on the line [‘round’, ‘butt’, ‘square’]How line segments of the shadow are joined.
this.lineJoin = 'miter' How line segments of the shadow are joined.
this.lineJoin = 'miter' Canvas lineJoin style between segments of series.
this.lineJoin = 'round' width of line if areas are stroked and not filled.
this.lineWidth = 2 size of the line for non-filled markers.
this.lineWidth = 2 Width of the hi-low line and open/close ticks.
this.lineWidth = 1.5 width of the shadow line stroke.
this.lineWidth = 1.5 Width of the trend line.
this.lineWidth = 1.5 Width of the line.Width of the line.Width of the line.Width of the line.width of the line in pixels.
this.lineWidth = 2.5 Width of the line.Pixels to add to the lineWidth of the highlight.
this.lineWidthAdjust = 2.5 compass location where to position the label around the point.
this.location = 'n' Placement of the legend.
this.location = 'ne' +Will expand zoom range to provide more rounded tick values.
this.looseZoom = false true to not show a label for a value which is 0.
this.hideZeros = false Alpha transparency to apply when highlighting bubble.
this.highlightAlpha = null color to use when highlighting an area on a filled plot.
this.highlightColor = null an array of colors to use when highlighting a slice.
this.highlightColors = [] an array of colors to use when highlighting a bar.
this.highlightColors = [] An array of colors to use when highlighting a slice.
this.highlightColors = [] an array of colors to use when highlighting a slice.
this.highlightColors = [] array of colors to use when highlighting an area.
this.highlightColors = [] an array of colors to use when highlighting a slice.
this.highlightColors = [] True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a bubble.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a area.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over an area on a filled plot.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight bubbles when moused over.
this.highlightMouseOver = true True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight area when moused over.
this.highlightMouseOver = true True to highlight area on a filled plot when moused over.
this.highlightMouseOver = true True to highlight slice when moused over.
this.highlightMouseOver = true true if is a hi-low-close chart (no open price).
this.hlc = false A straight horizontal line.Radius of the hub at the bottom center of gauge which the needle attaches to.
this.hubRadius = null ");if (browserV -Index- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/General5.html b/phpgwapi/js/jquery/jqplot/docs/index/General5.html index 6d6ed5b23c..7b166f9db0 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/General5.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/General5.html @@ -11,17 +11,29 @@ if (browserType) {document.write("Index-
I index, Series init, jqPlot innerDiameter, $.jqplot. DonutRenderer insertBreaks, $.jqplot. BlockRenderer intersectionThreshold, $.jqplot. Cursor interval, $.jqplot. LineRenderer intervalColors, $.jqplot. MeterGaugeRenderer intervalInnerRadius, $.jqplot. MeterGaugeRenderer intervalOuterRadius, $.jqplot. MeterGaugeRenderer intervals, $.jqplot. MeterGaugeRenderer Introduction isarc isMinorTick J jqPlot jqPlot Charts jqPlot CSS Customization jqPlot Options jqPlot Pugin Hooks, $.jqplot jqPlot Usage jqplot. enhancedLegendRenderer.js jqplot. pyramidAxisRenderer.js jqplot. pyramidRenderer.js L label labelHeightAdjust, $.jqplot. MeterGaugeRenderer labelOptions, Axis labelPosition labelRenderer, Axis labels labelsFromSeries, $.jqplot. PointLabels legend, jqPlot Legend Line lineCap lineJoin linePattern lineWidth lineWidthAdjust, $.jqplot. Highlighter location looseZoom, $.jqplot. Cursor M makeGridData marginBottom, Legend marginLeft, Legend marginRight, Legend marginTop, Legend mark markerOptions, Series markerRenderer markSize max methods Methods, $.jqplot. BlockRenderer min minorTicks, $.jqplot. LinearAxisRenderer MIT License moveBlock, $.jqplot. BlockRenderer moveSeriesToBack, jqPlot moveSeriesToFront, jqPlot converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.BezierCurveRenderer.prototype.makeGridData = function( data, plot ) converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.LineRenderer.prototype.makeGridData = function( data, plot ) converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.MekkoRenderer.prototype.makeGridData = function( data, plot ) CSS margin for the legend DOM element.
this.marginBottom = null CSS margin for the legend DOM element.
this.marginLeft = null CSS margin for the legend DOM element.
this.marginRight = null CSS margin for the legend DOM element.
this.marginTop = null tick mark on the axis.
this.mark = 'outside' tick mark on the axis.
this.mark = 'outside' renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer.
this.markerOptions = {} Renderer used to draw the marker of the highlighted point.
this.markerRenderer = new $.jqplot.MarkerRenderer( {shadow:false} ) Renderer to use to draw markers on the line.
this.markerRenderer = {show:false} A class of a renderer which will draw marker (e.g.
this.markerRenderer = $.jqplot.MarkerRenderer Length of the tick marks in pixels.
this.markSize = 6 Length of the tick marks in pixels.
this.markSize = 4 Maximum value on the gauge.
this.max maximum value of the axis (in data units, not pixels).
this.max=null Minimum value on the gauge.
this.min minimum value of the axis (in data units, not pixels).
this.min=null Copyright © 2009-2011 Chris LeonelloMoves an individual block.
this.moveBlock = function ( idx, x, y, duration ) This method requires jQuery 1.4+ Moves the specified series canvas behind all other series canvases.
this.moveSeriesToBack = function ( idx ) +This method requires jQuery 1.4+ Moves the specified series canvas in front of all other series canvases.
this.moveSeriesToFront = function ( idx ) 0 based index of this series in the plot series array.
this.index sets the plot target, checks data and applies user options to plot.
this.init = function( target, data, options ) Inner diameter of the donut, auto calculated by default.
this.innerDiameter = null true to turn spaces in data block label into html breaks br /.
this.insertBreaks = true pixel distance from data point or marker to consider cursor lines intersecting with point.
this.intersectionThreshold = 2 User specified interval above and below line for bands [default: ‘3%’’].
interval: '3%' } Array of colors to use for the intervals.
this.intervalColors = [ "#4bb2c5", "#EAA228", "#c5b47f", "#579575", "#839557", "#958c12", "#953579", "#4b5de4", "#d8b83f", "#ff5800", "#0085cc", "#c747a3", "#cddf54", "#FBD178", "#26B4E3", "#bd70c7"] Radius of the inner circle of the interval ring.
this.intervalInnerRadius = null Radius of the outer circle of the interval ring.
this.intervalOuterRadius = null Array of ranges to be drawn around the gauge.
this.intervals = [] jqPlot requires jQuery (1.4+ required for certain features).wether the shadow is an arc or not.
this.isarc = false wether the shadow is an arc or not.
this.isarc = false if this is a minor tick.
this.isMinorTick = false -if this is a minor tick.
this.isMinorTick = false Optional name for this overlay object.Optional name for this overlay object.Optional name for this overlay object.Optional name for this overlay object.Optional name for this overlay object.Padding between needle and inner edge of the ring when the needle is at the min or max gauge value.
this.needlePad = 6 Maximum thickness the needle.
this.needleThickness = null how close or far (in pixels) the cursor must be from a point marker to detect the point.
this.neighborThreshold = 4 Create a new theme based on the default theme, adding it the themeEngine.
$.jqplot.ThemeEngine.prototype.newTheme = function( name, obj ) Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null +Desired number of ticks.
this.numberTicks Plot object returned by call to $.jqplot.Pure JavaScript plotting plugin for jQuery.Much of the styling of jqPlot is done by css.-This document is out of date.
this.objects = [] Pixel offset at the given shadow angle of each shadow stroke from the last stroke.
this.offset = 1 color of the open price tick mark.
this.openColor = null This document will help you understand how jqPlot’s options relate to the API documentation and the jqPlot object itself.+See Options TutorialThe text or html for the label.
this.label = '' label for the axis.
this.label = '' A gauge label like ‘kph’ or ‘Volts’
this.label = null Label for the trend line to use in the legend.
this.label = '' Label for the axis
this.label = null Line label to use in the legend.
this.label = '' Number of Pixels to offset the label up (-) or down (+) from its default position.
this.labelHeightAdjust = 0 Options passed to the label renderer.
this.labelOptions = {} ‘auto’, ‘start’, ‘middle’ or ‘end’.
this.labelPosition = 'auto' Where to position the label, either ‘inside’ or ‘bottom’.
this.labelPosition = 'inside' A class of a rendering engine for creating an axis label.
this.labelRenderer = $.jqplot.AxisLabelRenderer array of arrays of labels, one array for each series.
this.labels = [] Array of labels to use.
this.labels = [] true to use labels within data point arrays.
this.labelsFromSeries = false see $.jqplot.TableLegendRenderer
this.legend = new Legend() Legend object.A straight line.Type of ending placed on the line [‘round’, ‘butt’, ‘square’]how ends of the shadow line are rendered.
this.lineCap = 'round' how ends of the shadow line are rendered.
this.lineCap = 'round' Canvas lineCap style at ends of line.
this.lineCap = 'round' How line segments of the shadow are joined.
this.lineJoin = 'miter' How line segments of the shadow are joined.
this.lineJoin = 'miter' Canvas lineJoin style between segments of series.
this.lineJoin = 'round' line pattern ‘dashed’, ‘dotted’, ‘solid’, some combination of ‘-’ and ‘.’
this.linePattern = 'solid' line pattern ‘dashed’, ‘dotted’, ‘solid’, some combination of ‘-’ and ‘.’
this.linePattern = 'solid' Width of the line.width of line if areas are stroked and not filled.
this.lineWidth = 2 size of the line for non-filled markers.
this.lineWidth = 2 Width of the hi-low line and open/close ticks.
this.lineWidth = 1.5 width of the shadow line stroke.
this.lineWidth = 1.5 Width of the trend line.
this.lineWidth = 1.5 width of the line in pixels.
this.lineWidth = 2.5 Pixels to add to the lineWidth of the highlight.
this.lineWidthAdjust = 2.5 compass location where to position the label around the point.
this.location = 'n' Placement of the legend.
this.location = 'ne' -Will expand zoom range to provide more rounded tick values.
this.looseZoom = false Padding to extend the range above and below the data bounds.
this.pad = 1.2 padding between the donut and plot edges, legend, etc.
this.padding = 20 padding between the funnel and plot edges, legend, etc.
this.padding = {top: 20, right: 20, bottom: 20, left: 20} padding between the meterGauge and plot edges, auto calculated by default.
this.padding = null padding between the pie and plot edges, legend, etc.
this.padding = 20 Padding to extend the range above data bounds.
this.padMax = null Padding to extend the range below data bounds.
this.padMin = null True will stop needle just below/above the min/max values if data is below/above min/max, as if the meter is “pegged”.
this.pegNeedle = true “insideGrid” places legend inside the grid area of the plot.
this.placement = "insideGrid" called after plot draw.called after each series is drawn.called after series shadows are drawn.called after initialization.called after user options are parsed.called after series related options are parsed.called after series is initialized.Wether to draw the legend before the series or not.called before plot draw.called before the legend is drawn.called before each series is drawn.called before series shadows are drawn.String to prepend to the tick label.
this.prefix = '' String to prepend to the tick label.
this.prefix = '' called before initialization.called before user options are parsed.called before series related options are parsed.called before series is initialized.PropertiesAxes options are specified within an axes object at the top level of the plot options like so:These properties are specified at the top of the options object like so:Properties will be assigned from a series array at the top level of the options.Point to pixel scaling factor, used for computing height of bounding box around a label.
this.pt2px = null - - - -Point to pixel scaling factor, used for computing height of bounding box around a label.
this.pt2px = null Empties the plot target div and redraws the plot.
this.redraw = function( clear ) reinitialize plot for replotting.
this.reInitialize = function () Remove the given theme from the themeEngine.
$.jqplot.ThemeEngine.prototype.remove = function( name ) Rename a theme.
$.jqplot.ThemeEngine.prototype.rename = function ( oldName, newName ) Renderer to use to draw the trend line.
this.renderer = new $.jqplot.LineRenderer() A class of a rendering engine that handles tick generation, scaling input data to pixel grid units and drawing the axis element.
this.renderer = $.jqplot.LinearAxisRenderer Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer.
this.renderer = $.jqplot.CanvasGridRenderer A class of a renderer which will draw the series, see $.jqplot.LineRenderer.
this.renderer = $.jqplot.LineRenderer A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer.
this.renderer = $.jqplot.DivTitleRenderer Options to pass to the line renderer.
this.rendererOptions = {marker:{show:false}} renderer specific options.
this.rendererOptions = {} Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer.
this.rendererOptions = {} renderer specific options passed to the renderer.
this.rendererOptions = {} Options to pass on to the renderer.
this.rendererOptions = {} renderer specific options passed to the renderer.
this.rendererOptions = {} Does a reinitialization of the plot followed by a redraw.
this.replot = function( options ) Reset the specified axes min, max, numberTicks and tickInterval properties to null or reset these properties on all axes if no list of axes is provided.
this.resetAxesScale = function( axes, options ) This method requires jQuery 1.4+ Restore the series canvas order to its original order when the plot was created.
this.restoreOriginalSeriesOrder = function () This method requires jQuery 1.4+ Restore the series canvas order to its previous state.
this.restorePreviousSeriesOrder = function () color of the outer ring, hub, and needle of the gauge.
this.ringColor = "#BBC6D0" pixel distance between rings, or multiple series in a donut plot.
this.ringMargin = null width of the ring around the gauge.
this.ringWidth = null +css padding-top spec for the rows in the legend.
this.rowSpacing = '0.5em' converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.BezierCurveRenderer.prototype.makeGridData = function( data, plot ) converts any arbitrary data values to grid coordinates and returns them.
$.jqplot.MekkoRenderer.prototype.makeGridData = function( data, plot ) CSS margin for the legend DOM element.
this.marginBottom = null CSS margin for the legend DOM element.
this.marginLeft = null CSS margin for the legend DOM element.
this.marginRight = null CSS margin for the legend DOM element.
this.marginTop = null tick mark on the axis.
this.mark = 'outside' tick mark on the axis.
this.mark = 'outside' renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer.
this.markerOptions = {} Renderer used to draw the marker of the highlighted point.
this.markerRenderer = new $.jqplot.MarkerRenderer( {shadow:false} ) Renderer to use to draw markers on the line.
this.markerRenderer = {show:false} A class of a renderer which will draw marker (e.g.
this.markerRenderer = $.jqplot.MarkerRenderer Length of the tick marks in pixels.
this.markSize = 6 Length of the tick marks in pixels.
this.markSize = 4 Maximum value on the gauge.
this.max maximum value of the axis (in data units, not pixels).
this.max = null Minimum value on the gauge.
this.min minimum value of the axis (in data units, not pixels).
this.min = null Number of ticks to add between “major” ticks.
this.minorTicks = 0 Copyright © 2009-2011 Chris LeonelloMoves an individual block.
this.moveBlock = function ( idx, x, y, duration ) This method requires jQuery 1.4+ Moves the specified series canvas behind all other series canvases.
this.moveSeriesToBack = function ( idx ) This method requires jQuery 1.4+ Moves the specified series canvas in front of all other series canvases.
this.moveSeriesToFront = function ( idx ) ");if (browserV -Index+
S sectionMargin, $.jqplot. FunnelRenderer series, jqPlot Series seriesColors, jqPlot seriesDefaults, jqPlot seriesLabelIndex, $.jqplot. PointLabels seriesToggle setGridData shadow shadowAlpha shadowAngle shadowColor, Grid shadowDepth shadowOffset shadowRenderer, $.jqplot. MarkerRenderer shadowWidth, Grid shapeRenderer, $.jqplot. MarkerRenderer show showBorders, $.jqplot. MekkoRenderer showCursorLegend, $.jqplot. Cursor showDataLabels showGridline showHorizontalLine, $.jqplot. Cursor showLabel showLabels showLine, Series showMark showMarker showMinorTicks, Axis showSwatch, Legend showTickLabels, $.jqplot. MeterGaugeRenderer showTickMarks, Axis showTicks showTooltip showTooltipDataPosition, $.jqplot. Cursor showTooltipGridPosition, $.jqplot. Cursor showTooltipOutsideZoom, $.jqplot. Cursor showTooltipUnitPosition, $.jqplot. Cursor showVerticalLine, $.jqplot. Cursor size sizeAdjust, $.jqplot. Highlighter sliceMargin sortData, jqPlot sortMergedLabels, $.jqplot. CategoryAxisRenderer stackedValue, $.jqplot. PointLabels stackSeries, jqPlot start, Line startAngle stop, Line strokeRect, $.jqplot. shapeRenderer strokeStyle, $.jqplot. shapeRenderer style syncTicks, Axis - + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/General6.html b/phpgwapi/js/jquery/jqplot/docs/index/General6.html index 51f3c028e9..8b03724c11 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/General6.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/General6.html @@ -11,41 +11,17 @@ if (browserType) {document.write("Indexspacing between funnel sections in pixels.
this.sectionMargin = 6 Array of series object options.
this.series = [] An individual data series object.Ann array of CSS color specifications that will be applied, in order, to the series in the plot.
this.seriesColors = $.jqplot.config.defaultColors default options that will be applied to all series.
seriesDefaults: {}, series:[] } array index for location of labels within data point arrays.
this.seriesLabelIndex = null false to not enable series on/off toggling on the legend.
this.seriesToggle = 'normal' converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.BezierCurveRenderer.prototype.setGridData = function( plot ) converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.LineRenderer.prototype.setGridData = function( plot ) converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.MekkoRenderer.prototype.setGridData = function( plot ) wether or not to draw a shadow on the line
this.shadow = true true or false, wether or not to show the shadow.
this.shadow = true wether or not to draw a shadow on the linewether or not to draw a shadow on the linewether to show a shadow behind the grid.
this.shadow = true wether or not to draw a shadow on the linewether or not to draw a shadow on the linewether or not to draw a shadow on the line
this.shadow = true wether or not to draw a shadow on the linetransparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.08 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 Alpha channel transparency of shadow.
this.shadowAlpha = '0.07' transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 Alpha transparency of the shadow.
this.shadowAlpha = 0.07 Alpha channel transparency of shadow.Alpha channel transparency of shadow.Alpha channel transparency of shadow.
this.shadowAlpha = '0.07' Alpha channel transparency of shadow.Alpha channel transparency of shadow.Alpha channel transparency of shadow.
this.shadowAlpha = '0.1' Alpha channel transparency of shadow.Shadow angle in degrees
this.shadowAngle = 45 Angle of the shadow on the trend line.
this.shadowAngle = 45 Shadow angle in degreesShadow angle in degreesshadow angle in degrees
this.shadowAngle = 45 Shadow angle in degreesShadow angle in degreesShadow angle in degrees
this.shadowAngle = 45 Shadow angle in degreesan optional css color spec for the shadow in ‘rgba(n, n, n, n)’ form
this.shadowColor = null number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 4 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 number of strokes to make of the shadow.
this.shadowDepth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.Number of times shadow is stroked, each stroke offset shadowOffset from the last.Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.Number of times shadow is stroked, each stroke offset shadowOffset from the last.Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 offset of the shadow from the area and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 Shadow offset from line in pixels
this.shadowOffset = 1 offset of the shadow from the gauge ring and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 pixel offset for each stroke of the shadow.
this.shadowOffset = 1.0 Shadow offset from line in pixelsShadow offset from line in pixelsOffset of each shadow stroke from the border in pixels
this.shadowOffset = 1.5 Shadow offset from line in pixelsShadow offset from line in pixelsShadow offset from line in pixels
this.shadowOffset = 1.25 Shadow offset from line in pixelsRenderer that will draws the shadows on the marker.
this.shadowRenderer = new $.jqplot.ShadowRenderer() width of the stoke for the shadow
this.shadowWidth = 3 Renderer that will draw the marker.
this.shapeRenderer = new $.jqplot.ShapeRenderer() wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true wether to show the cursor or not.
this.show = $.jqplot.config.enablePlugins true to show the highlight.
this.show = $.jqplot.config.enablePlugins wether or not to show the marker.
this.show = true show the labels or not.
this.show = $.jqplot.config.enablePlugins Wether or not to show the trend line.
this.show = $.jqplot.config.enablePlugins Wether to display the axis on the graph.
this.show = false true to show (draw), false to not draw.true to show (draw), false to not draw.true to show (draw), false to not draw.Wether to display the legend on the graph.
this.show = false true to show (draw), false to not draw.wether or not to draw the series.
this.show = true wether or not to show the title
this.show = true true to show (draw), false to not draw.True to draw borders lines between areas on the chart.
this.showBorders = true Replace the plot legend with an enhanced legend displaying intersection information.
this.showCursorLegend = false true to show data labels on slices.
this.showDataLabels = false true to show data labels on slices.
this.showDataLabels = false true to show data labels on slices.
this.showDataLabels = false wether or not to draw the gridline on the grid at this tick.
this.showGridline = true wether or not to draw the gridline on the grid at this tick.
this.showGridline = true draw a horizontal line across the plot which follows the cursor.
this.showHorizontalLine = false wether or not to show the label.
this.showLabel = true wether or not to show the label.
this.showLabel = true wether or not to show the label.
this.showLabel = true true to show the axis label.
this.showLabel = true true to show label for this series in the legend.
this.showLabel = true True to show labels on bubbles (if any), false to not show.
this.showLabels = true true to show the label text on the legend.
this.showLabels = true wether to actually draw the line or not.
this.showLine = true wether or not to show the mark on the axis.
this.showMark = true wether or not to show the mark on the axis.
this.showMark = true true to show the marker
this.showMarker = true wether or not to show the markers at the data points.
this.showMarker = true Wether or not to show minor ticks.
this.showMinorTicks = true true to show the color swatches on the legend.
this.showSwatches = true true to show tick labels next to ticks.
this.showTickLabels = true Wether to show the tick marks (line crossing grid) or not.
this.showTickMarks = true true to show ticks around gauge.
this.showTicks = true Wether to show the ticks (both marks and labels) or not.
this.showTicks = true show a cursor position tooltip.
this.showTooltip = true Show a tooltip with data point values.
this.showTooltip = true Used with showVerticalLine to show intersecting data points in the tooltip.
this.showTooltipDataPosition = false show the grid pixel coordinates of the mouse.
this.showTooltipGridPosition = false True will keep updating the tooltip when zooming of the grid.
this.showTooltipOutsideZoom = false show the unit (data) coordinates of the mouse.
this.showTooltipUnitPosition = true draw a vertical line across the plot which follows the cursor.
this.showVerticalLine = false Length of the tick beyond the grid in pixels.
this.size = 4 Size of the marker (diameter or circle, length of edge of square, etc.)
this.size = 9.0 Pixels to add to the overall size of the highlight.
this.sizeAdjust = 5 angular spacing between donut slices in degrees.
this.sliceMargin = 0 angular spacing between pie slices in degrees.
this.sliceMargin = 0 false to not sort the data passed in by the user.
this.sortData = true True to sort tick labels when labels are created by merging x axis values from multiple series.
this.sortMergedLabels = false true to display value as stacked in a stacked plot.
this.stackedValue = false true or false, creates a stack or “mountain” plot.
this.stackSeries = false [x, y] coordinates for the start of the line.Angle to start drawing donut in degrees.
this.startAngle = 0 Angle to start drawing pie in degrees.
this.startAngle = 0 [x, y] coordinates for the end of the line.
stop: [] } true to draw shape as a stroked rectangle.
this.strokeRect = false css color spec for the stoke style
this.strokeStyle = '#999999' CSS spec for cursor style
this.style = 'crosshair' One of diamond, circle, square, x, plus, dash, filledDiamond, filledCircle, filledSquare
this.style = 'filledCircle' +true to try and synchronize tick spacing across multiple axes so that ticks and grid lines line up.
this.syncTicks = null Optional name for the overlay object.Padding between needle and inner edge of the ring when the needle is at the min or max gauge value.
this.needlePad = 6 Maximum thickness the needle.
this.needleThickness = null css color spec used for filled (area) plots that are filled to zero and the “useNegativeColors” option is true.
this.negativeColor how close or far (in pixels) the cursor must be from a point marker to detect the point.
this.neighborThreshold = 4 Create a new theme based on the default theme, adding it the themeEngine.
$.jqplot.ThemeEngine.prototype.newTheme = function( name, obj ) Options to set up a mock plot with a data loading indicator if no data is specified.
this.noDataIndicator = { show: false, indicator: 'Loading Data...', axes: { xaxis: { min: 0, max: 10, tickInterval: 2, show: true }, yaxis: { min: 0, max: 12, tickInterval: 3, show: true } } } Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null + + + +Desired number of ticks.
this.numberTicks
this.objects = [] Pixel offset at the given shadow angle of each shadow stroke from the last stroke.
this.offset = 1 color of the open price tick mark.
this.openColor = null This document will help you understand how jqPlot’s options relate to the API documentation and the jqPlot object itself.+ + + +See Options TutorialPadding to extend the range above and below the data bounds.
this.pad = 1.2 padding between the donut and plot edges, legend, etc.
this.padding = 20 padding between the funnel and plot edges, legend, etc.
this.padding = {top: 20, right: 20, bottom: 20, left: 20} padding between the meterGauge and plot edges, auto calculated by default.
this.padding = null padding between the pie and plot edges, legend, etc.
this.padding = 20 Padding to extend the range above data bounds.
this.padMax = null Padding to extend the range below data bounds.
this.padMin = null True will stop needle just below/above the min/max values if data is below/above min/max, as if the meter is “pegged”.
this.pegNeedle = true “insideGrid” places legend inside the grid area of the plot.
this.placement = "insideGrid" Position of axis.
this.position = null called after plot draw.called after each series is drawn.called after series shadows are drawn.called after initialization.called after user options are parsed.called after series related options are parsed.called after series is initialized.Wether to draw the legend before the series or not.called before plot draw.called before the legend is drawn.called before each series is drawn.called before series shadows are drawn.String to prepend to the tick label.
this.prefix = '' String to prepend to the tick label.
this.prefix = '' called before initialization.called before user options are parsed.called before series related options are parsed.called before series is initialized.PropertiesAxes options are specified within an axes object at the top level of the plot options like so:These properties are specified at the top of the options object like so:Properties will be assigned from a series array at the top level of the options.Point to pixel scaling factor, used for computing height of bounding box around a label.
this.pt2px = null + + + +Point to pixel scaling factor, used for computing height of bounding box around a label.
this.pt2px = null Empties the plot target div and redraws the plot.
this.redraw = function( clear ) reinitialize plot for replotting.
this.reInitialize = function () Remove the given theme from the themeEngine.
$.jqplot.ThemeEngine.prototype.remove = function( name ) Rename a theme.
$.jqplot.ThemeEngine.prototype.rename = function ( oldName, newName ) Renderer to use to draw the trend line.
this.renderer = new $.jqplot.LineRenderer() A class of a rendering engine that handles tick generation, scaling input data to pixel grid units and drawing the axis element.
this.renderer = $.jqplot.LinearAxisRenderer Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer.
this.renderer = $.jqplot.CanvasGridRenderer A class of a renderer which will draw the series, see $.jqplot.LineRenderer.
this.renderer = $.jqplot.LineRenderer A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer.
this.renderer = $.jqplot.DivTitleRenderer Options to pass to the line renderer.
this.rendererOptions = {marker:{show:false}} renderer specific options.
this.rendererOptions = {} Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer.
this.rendererOptions = {} renderer specific options passed to the renderer.
this.rendererOptions = {} Options to pass on to the renderer.
this.rendererOptions = {} renderer specific options passed to the renderer.
this.rendererOptions = {} Does a reinitialization of the plot followed by a redraw.
this.replot = function( options ) Reset the specified axes min, max, numberTicks and tickInterval properties to null or reset these properties on all axes if no list of axes is provided.
this.resetAxesScale = function( axes, options ) This method requires jQuery 1.4+ Restore the series canvas order to its original order when the plot was created.
this.restoreOriginalSeriesOrder = function () This method requires jQuery 1.4+ Restore the series canvas order to its previous state.
this.restorePreviousSeriesOrder = function () color of the outer ring, hub, and needle of the gauge.
this.ringColor = "#BBC6D0" pixel distance between rings, or multiple series in a donut plot.
this.ringMargin = null width of the ring around the gauge.
this.ringWidth = null css padding-top spec for the rows in the legend.
this.rowSpacing = '0.5em' ");if (browserV -Index+
T text, Title textAlign, Title textColor themes, $.jqplot. ThemeEngine thickness, $.jqplot. DonutRenderer tickColor, $.jqplot. MeterGaugeRenderer tickInterval, Axis tickLength, $.jqplot. OHLCRenderer tickMode, $.jqplot. MekkoAxisRenderer tickOptions, Axis tickPadding, $.jqplot. MeterGaugeRenderer tickRenderer ticks tickSpacing title, jqPlot Title tooltipAxes, $.jqplot. Highlighter tooltipAxisGroups, $.jqplot. Cursor tooltipFadeSpeed, $.jqplot. Highlighter tooltipFormatString tooltipLocation tooltipOffset type, $.jqplot. Trendline U upBodyColor, $.jqplot. OHLCRenderer Usage useAxesFormatters useNegativeColors, Series useSeriesColor, Axis V varyBarColor, $.jqplot. BarRenderer varyBlockColors, $.jqplot. BlockRenderer varyBubbleColors, $.jqplot. BubbleRenderer Version VerticalLine W waterfall, $.jqplot. BarRenderer wickColor, $.jqplot. OHLCRenderer widthRatio, $.jqplot. FunnelRenderer X xaxis xmax, HorizontalLine xmin, HorizontalLine xoffset, Legend xpadding, $.jqplot. PointLabels Y y, HorizontalLine yaxis yoffset, Legend ypadding, $.jqplot. PointLabels yvalues, $.jqplot. Highlighter Z zoom, $.jqplot. Cursor zoomProxy, $.jqplot. Cursor.$.jqplot. Cursor - + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/General7.html b/phpgwapi/js/jquery/jqplot/docs/index/General7.html new file mode 100644 index 0000000000..423e757950 --- /dev/null +++ b/phpgwapi/js/jquery/jqplot/docs/index/General7.html @@ -0,0 +1,58 @@ + + +Index-
S sectionMargin, $.jqplot. FunnelRenderer series, jqPlot Series seriesColors, jqPlot seriesDefaults, jqPlot seriesLabelIndex, $.jqplot. PointLabels seriesToggle setGridData shadow shadowAlpha shadowAngle shadowColor, Grid shadowDepth shadowOffset shadowRenderer, $.jqplot. MarkerRenderer shadowWidth, Grid shapeRenderer, $.jqplot. MarkerRenderer show showBorders, $.jqplot. MekkoRenderer showCursorLegend, $.jqplot. Cursor showDataLabels showGridline showHorizontalLine, $.jqplot. Cursor showLabel showLabels showLine, Series showLines, $.jqplot. LineRenderer showMark showMarker showMinorTicks, Axis showSwatch, Legend showTickLabels, $.jqplot. MeterGaugeRenderer showTickMarks, Axis showTicks showTooltip showTooltipDataPosition, $.jqplot. Cursor showTooltipGridPosition, $.jqplot. Cursor showTooltipOutsideZoom, $.jqplot. Cursor showTooltipPrecision, $.jqplot. CanvasOverlay showTooltipUnitPosition, $.jqplot. Cursor showVerticalLine, $.jqplot. Cursor size sizeAdjust, $.jqplot. Highlighter sliceMargin smooth, $.jqplot. LineRenderer sortData, jqPlot sortMergedLabels, $.jqplot. CategoryAxisRenderer stackedValue, $.jqplot. PointLabels stackSeries, jqPlot start, Line startAngle stop, Line strokeRect, $.jqplot. shapeRenderer strokeStyle, $.jqplot. shapeRenderer style syncTicks, Axis text of the title;
this.text = text css text-align spec for the text.
this.textAlign css spec for the color attribute.
this.textColor css spec for the color attribute.
this.textColor = '#666666' css spec for the color attribute.
this.textColor = '#666666' css color spec for the legend text.
this.textColor css color spec for the text.
this.textColor hash of themes managed by the theme engine.
this.themes = {} thickness of the donut, auto computed by default Overridden by if innerDiameter is specified.
this.thickness = null color of the tick marks around the gauge.
this.tickColor = "989898" number of units between ticks.
this.tickInterval length of the line in pixels indicating open and close price.
this.tickLength = 'auto' How to space the ticks on the axis.
this.tickMode Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options.
this.tickOptions = {} padding of the tick marks to the outer ring and the tick labels to marks.
this.tickPadding = null A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.
this.tickRenderer = $.jqplot.AxisTickRenderer Array of tick values.
this.ticks = [] 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis.
this.ticks = [] Degrees between ticks.
this.tickSpacing = 30 Approximate pixel spacing between ticks on graph.
this.tickSpacing = 75 Title object.
this.title = new Title() Plot Title object.Which axes to display in tooltip, ‘x’, ‘y’ or ‘both’, ‘xy’ or ‘yx’ ‘both’ and ‘xy’ are equivalent, ‘yx’ reverses order of labels.
this.tooltipAxes = 'both' Show position for the specified axes.
this.tooltipAxisGroups = [] ‘slow’, ‘def’, ‘fast’, or number of milliseconds.
this.tooltipFadeSpeed = "fast" sprintf format string for the tooltip.
this.tooltipFormatString = '%.4P, %.4P' sprintf format string for the tooltip.
this.tooltipFormatString = '%.5P' Where to position tooltip.
this.tooltipLocation = 'se' Where to position tooltip, ‘n’, ‘ne’, ‘e’, ‘se’, ‘s’, ‘sw’, ‘w’, ‘nw’
this.tooltipLocation = 'nw' Pixel offset of tooltip from the grid boudaries or cursor center.
this.tooltipOffset = 6 Pixel offset of tooltip from the highlight.
this.tooltipOffset = 2 - - - -Either ‘exponential’, ‘exp’, or ‘linear’.
this.type = 'linear' Color of candlestick body of an “up” day.
this.upBodyColor = null See jqPlot UsageUse the x and y axes formatters to format the text in the tooltip.
this.useAxesFormatters = true Use the x and y axes formatters to format the text in the tooltip.
this.useAxesFormatters = true true to color negative values differently in filled and bar charts.
this.useNegativeColors = true - - - -Use the color of the first series associated with this axis for the tick marks and line bordering this axis.
this.useSeriesColor = false true to color each bar of a series separately rather than have every bar of a given series the same color.
this.varyBarColor = false true to vary the color of each block in this series according to the seriesColors array.
this.varyBlockColors = false True to vary the color of each bubble in this series according to the seriesColors array.
this.varyBubbleColors = true 1.0.0b2_r792- - - -A straight vertical line.true to enable waterfall plot.
this.waterfall = false color of the hi-lo line thorugh the candlestick body.
this.wickColor = null - - - -The ratio of the width of the top of the funnel to the bottom.
this.widthRatio = 0.2 X axis to use for positioning/scaling the line.X axis to use for positioning/scaling the line.X axis to use for positioning/scaling the line.X axis to use for positioning/scaling the line.which x axis to use with this series, either ‘xaxis’ or ‘x2axis’.
this.xaxis = 'xaxis' X axis to use for positioning/scaling the line.x value for the end of the line, null to scale to axis max.x value for the start of the line, null to scale to axis min.DEPRECATED.
this.xoffset = 0 - - - -horizontal padding in pixels between point and label
this.xpadding = 6 y value to position the lineY axis to use for positioning/scaling the line.Y axis to use for positioning/scaling the line.Y axis to use for positioning/scaling the line.Y axis to use for positioning/scaling the line.which y axis to use with this series, either ‘yaxis’ or ‘y2axis’.
this.yaxis = 'yaxis' Y axis to use for positioning/scaling the line.
yaxis: 'yaxis', x: null, ymin: null, ymax: null, yOffset: '6px', // number or string. Number interpreted as units, string as pixels. yminOffset: null, ymaxOffset: null } DEPRECATED.
this.yoffset = 0 vertical padding in pixels between point and label
this.ypadding = 6 - - - -Number of y values to expect in the data point array.
this.yvalues = 1 Enable plot zooming.
this.zoom = false +links targetPlot to controllerPlot so that plot zooming of targetPlot will be controlled by zooming on the controllerPlot.
$.jqplot.Cursor.zoomProxy = function( targetPlot, controllerPlot ) spacing between funnel sections in pixels.
this.sectionMargin = 6 Array of series object options.
this.series = [] An individual data series object.Ann array of CSS color specifications that will be applied, in order, to the series in the plot.
this.seriesColors = $.jqplot.config.defaultColors default options that will be applied to all series.
seriesDefaults: {}, series:[] } array index for location of labels within data point arrays.
this.seriesLabelIndex = null false to not enable series on/off toggling on the legend.
this.seriesToggle = 'normal' converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.BezierCurveRenderer.prototype.setGridData = function( plot ) converts the user data values to grid coordinates and stores them in the gridData array.
$.jqplot.MekkoRenderer.prototype.setGridData = function( plot ) wether or not to draw a shadow on the linewether or not to draw a shadow on the line
this.shadow = true true or false, wether or not to show the shadow.
this.shadow = true wether to show a shadow behind the grid.
this.shadow = true transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.08 Alpha channel transparency of shadow.transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 Alpha channel transparency of shadow.
this.shadowAlpha = '0.07' transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 Alpha transparency of the shadow.
this.shadowAlpha = 0.07 Alpha channel transparency of shadow.
this.shadowAlpha = '0.07' Alpha channel transparency of shadow.
this.shadowAlpha = '0.1' Shadow angle in degreesShadow angle in degrees
this.shadowAngle = 45 Angle of the shadow on the trend line.
this.shadowAngle = 45 shadow angle in degrees
this.shadowAngle = 45 Shadow angle in degrees
this.shadowAngle = 45 an optional css color spec for the shadow in ‘rgba(n, n, n, n)’ form
this.shadowColor = null number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 Number of times shadow is stroked, each stroke offset shadowOffset from the last.number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 4 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 number of strokes to make of the shadow.
this.shadowDepth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 Shadow offset from line in pixelsoffset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 offset of the shadow from the area and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 Shadow offset from line in pixels
this.shadowOffset = 1 offset of the shadow from the gauge ring and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 pixel offset for each stroke of the shadow.
this.shadowOffset = 1.0 Offset of each shadow stroke from the border in pixels
this.shadowOffset = 1.5 Shadow offset from line in pixels
this.shadowOffset = 1.25 Renderer that will draws the shadows on the marker.
this.shadowRenderer = new $.jqplot.ShadowRenderer() width of the stoke for the shadow
this.shadowWidth = 3 Renderer that will draw the marker.
this.shapeRenderer = new $.jqplot.ShapeRenderer() wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true true to show (draw), false to not draw.wether to show the cursor or not.
this.show = $.jqplot.config.enablePlugins true to show the highlight.
this.show = $.jqplot.config.enablePlugins true to show the bands.wether or not to show the marker.
this.show = true show the labels or not.
this.show = $.jqplot.config.enablePlugins Wether or not to show the trend line.
this.show = $.jqplot.config.enablePlugins Wether to display the axis on the graph.
this.show = false Wether to display the legend on the graph.
this.show = false wether or not to draw the series.
this.show = true wether or not to show the title
this.show = true True to draw borders lines between areas on the chart.
this.showBorders = true Replace the plot legend with an enhanced legend displaying intersection information.
this.showCursorLegend = false true to show data labels on slices.
this.showDataLabels = false true to show data labels on slices.
this.showDataLabels = false true to show data labels on slices.
this.showDataLabels = false wether or not to draw the gridline on the grid at this tick.
this.showGridline = true wether or not to draw the gridline on the grid at this tick.
this.showGridline = true draw a horizontal line across the plot which follows the cursor.
this.showHorizontalLine = false wether or not to show the label.
this.showLabel = true wether or not to show the label.
this.showLabel = true wether or not to show the label.
this.showLabel = true true to show the axis label.
this.showLabel = true true to show label for this series in the legend.
this.showLabel = true True to show labels on bubbles (if any), false to not show.
this.showLabels = true true to show the label text on the legend.
this.showLabels = true wether to actually draw the line or not.
this.showLine = true True to show lines at top and bottom of bands [default: false].wether or not to show the mark on the axis.
this.showMark = true wether or not to show the mark on the axis.
this.showMark = true true to show the marker
this.showMarker = true wether or not to show the markers at the data points.
this.showMarker = true Wether or not to show minor ticks.
this.showMinorTicks = true true to show the color swatches on the legend.
this.showSwatches = true true to show tick labels next to ticks.
this.showTickLabels = true Wether to show the tick marks (line crossing grid) or not.
this.showTickMarks = true true to show ticks around gauge.
this.showTicks = true Wether to show the ticks (both marks and labels) or not.
this.showTicks = true Show a tooltip with data point values.show a cursor position tooltip.
this.showTooltip = true Show a tooltip with data point values.
this.showTooltip = true Used with showVerticalLine to show intersecting data points in the tooltip.
this.showTooltipDataPosition = false show the grid pixel coordinates of the mouse.
this.showTooltipGridPosition = false True will keep updating the tooltip when zooming of the grid.
this.showTooltipOutsideZoom = false Controls how close to line cursor must be to show tooltip.show the unit (data) coordinates of the mouse.
this.showTooltipUnitPosition = true draw a vertical line across the plot which follows the cursor.
this.showVerticalLine = false Length of the tick beyond the grid in pixels.
this.size = 4 Size of the marker (diameter or circle, length of edge of square, etc.)
this.size = 9.0 Pixels to add to the overall size of the highlight.
this.sizeAdjust = 5 angular spacing between donut slices in degrees.
this.sliceMargin = 0 angular spacing between pie slices in degrees.
this.sliceMargin = 0 True to draw a smoothed (interpolated) line through the data points with automatically computed number of smoothing points.
this.renderer.smooth = false false to not sort the data passed in by the user.
this.sortData = true True to sort tick labels when labels are created by merging x axis values from multiple series.
this.sortMergedLabels = false true to display value as stacked in a stacked plot.
this.stackedValue = false true or false, creates a stack or “mountain” plot.
this.stackSeries = false [x, y] coordinates for the start of the line.Angle to start drawing donut in degrees.
this.startAngle = 0 Angle to start drawing pie in degrees.
this.startAngle = 0 [x, y] coordinates for the end of the line.
stop: [] } true to draw shape as a stroked rectangle.
this.strokeRect = false css color spec for the stoke style
this.strokeStyle = '#999999' CSS spec for cursor style
this.style = 'crosshair' One of diamond, circle, square, x, plus, dash, filledDiamond, filledCircle, filledSquare
this.style = 'filledCircle' true to try and synchronize tick spacing across multiple axes so that ticks and grid lines line up.
this.syncTicks = null Index + + + + + + + + + ++ + + + + + + + + + + + \ No newline at end of file diff --git a/phpgwapi/js/jquery/jqplot/docs/index/Hooks.html b/phpgwapi/js/jquery/jqplot/docs/index/Hooks.html index 79456ac4d3..075863b2fc 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/Hooks.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/Hooks.html @@ -30,10 +30,10 @@ if (browserType) {document.write("Index+ +
T text, Title textAlign, Title textColor themes, $.jqplot. ThemeEngine thickness, $.jqplot. DonutRenderer tickColor, $.jqplot. MeterGaugeRenderer tickInset tickInterval, Axis tickLength, $.jqplot. OHLCRenderer tickMode, $.jqplot. MekkoAxisRenderer tickOptions, Axis tickPadding, $.jqplot. MeterGaugeRenderer tickRenderer ticks tickSpacing title, jqPlot Title tooltipAxes, $.jqplot. Highlighter tooltipAxisGroups, $.jqplot. Cursor tooltipFadeSpeed tooltipFormatString tooltipLocation tooltipOffset transposedData, $.jqplot. BarRenderer type, $.jqplot. Trendline U upBodyColor, $.jqplot. OHLCRenderer Usage useAxesFormatters useNegativeColors, Series useSeriesColor, Axis V varyBarColor, $.jqplot. BarRenderer varyBlockColors, $.jqplot. BlockRenderer varyBubbleColors, $.jqplot. BubbleRenderer Version VerticalLine W waterfall, $.jqplot. BarRenderer wickColor, $.jqplot. OHLCRenderer widthRatio, $.jqplot. FunnelRenderer X xaxis xmax, HorizontalLine xmin, HorizontalLine xoffset, Legend xpadding, $.jqplot. PointLabels Y y, HorizontalLine yaxis yoffset, Legend ypadding, $.jqplot. PointLabels yvalues, $.jqplot. Highlighter Z zoom, $.jqplot. Cursor zoomProxy, $.jqplot. Cursor.$.jqplot. Cursor text of the title;
this.text = text css text-align spec for the text.
this.textAlign css spec for the color attribute.
this.textColor css spec for the color attribute.
this.textColor = '#666666' css spec for the color attribute.
this.textColor = '#666666' css color spec for the legend text.
this.textColor css color spec for the text.
this.textColor hash of themes managed by the theme engine.
this.themes = {} thickness of the donut, auto computed by default Overridden by if innerDiameter is specified.
this.thickness = null color of the tick marks around the gauge.
this.tickColor = "989898" Controls the amount to inset the first and last ticks from the edges of the grid, in multiples of the tick interval.
this.tickInset = 0 Controls the amount to inset the first and last ticks from the edges of the grid, in multiples of the tick interval.
this.tickInset = 0 number of units between ticks.
this.tickInterval length of the line in pixels indicating open and close price.
this.tickLength = 'auto' How to space the ticks on the axis.
this.tickMode Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options.
this.tickOptions = {} padding of the tick marks to the outer ring and the tick labels to marks.
this.tickPadding = null A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.
this.tickRenderer = $.jqplot.AxisTickRenderer Array of tick values.
this.ticks = [] 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis.
this.ticks = [] Degrees between ticks.
this.tickSpacing = 30 Approximate pixel spacing between ticks on graph.
this.tickSpacing = 75 Title object.
this.title = new Title() Plot Title object.Which axes to display in tooltip, ‘x’, ‘y’ or ‘both’, ‘xy’ or ‘yx’ ‘both’ and ‘xy’ are equivalent, ‘yx’ reverses order of labels.
this.tooltipAxes = 'both' Show position for the specified axes.
this.tooltipAxisGroups = [] ‘slow’, ‘def’, ‘fast’, or number of milliseconds.‘slow’, ‘def’, ‘fast’, or number of milliseconds.
this.tooltipFadeSpeed = "fast" Format string passed the x and y values of the cursor on the line.
tooltipFormatString: '%d, %d' } sprintf format string for the tooltip.
this.tooltipFormatString = '%.4P, %.4P' sprintf format string for the tooltip.
this.tooltipFormatString = '%.5P' Where to position tooltip, ‘n’, ‘ne’, ‘e’, ‘se’, ‘s’, ‘sw’, ‘w’, ‘nw’Where to position tooltip.
this.tooltipLocation = 'se' Where to position tooltip, ‘n’, ‘ne’, ‘e’, ‘se’, ‘s’, ‘sw’, ‘w’, ‘nw’
this.tooltipLocation = 'nw' Pixel offset of tooltip from the highlight.Pixel offset of tooltip from the grid boudaries or cursor center.
this.tooltipOffset = 6 Pixel offset of tooltip from the highlight.
this.tooltipOffset = 2 NOT IMPLEMENTED YET.
this.transposedData = true + + + +Either ‘exponential’, ‘exp’, or ‘linear’.
this.type = 'linear' Color of candlestick body of an “up” day.
this.upBodyColor = null See jqPlot UsageUse the x and y axes formatters to format the text in the tooltip.
this.useAxesFormatters = true Use the x and y axes formatters to format the text in the tooltip.
this.useAxesFormatters = true true to color negative values differently in filled and bar charts.
this.useNegativeColors = true + + + +Use the color of the first series associated with this axis for the tick marks and line bordering this axis.
this.useSeriesColor = false true to color each bar of a series separately rather than have every bar of a given series the same color.
this.varyBarColor = false true to vary the color of each block in this series according to the seriesColors array.
this.varyBlockColors = false True to vary the color of each bubble in this series according to the seriesColors array.
this.varyBubbleColors = true 1.0.0b2_r947+ + + +A straight vertical line.true to enable waterfall plot.
this.waterfall = false color of the hi-lo line thorugh the candlestick body.
this.wickColor = null + + + +The ratio of the width of the top of the funnel to the bottom.
this.widthRatio = 0.2 X axis to use for positioning/scaling the line.which x axis to use with this series, either ‘xaxis’ or ‘x2axis’.
this.xaxis = 'xaxis' x value for the end of the line, null to scale to axis max.x value for the start of the line, null to scale to axis min.DEPRECATED.
this.xoffset = 0 + + + +horizontal padding in pixels between point and label
this.xpadding = 6 y value to position the lineY axis to use for positioning/scaling the line.which y axis to use with this series, either ‘yaxis’ or ‘y2axis’.
this.yaxis = 'yaxis' DEPRECATED.
this.yoffset = 0 vertical padding in pixels between point and label
this.ypadding = 6 + + + +Number of y values to expect in the data point array.
this.yvalues = 1 Enable plot zooming.
this.zoom = false + +links targetPlot to controllerPlot so that plot zooming of targetPlot will be controlled by zooming on the controllerPlot.
$.jqplot.Cursor.zoomProxy = function( targetPlot, controllerPlot ) ");if (browserV- + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/Properties.html b/phpgwapi/js/jquery/jqplot/docs/index/Properties.html index 16fa8c5dec..57845c7905 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/Properties.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/Properties.html @@ -11,33 +11,25 @@ if (browserType) {document.write("");if (browserV -Property Index+
A activeTheme, $.jqplot. ThemeEngine alpha, $.jqplot. shadowRenderer angle autoscale, Axis autoscaleBubbles, $.jqplot. BubbleRenderer autoscaleMultiplier, $.jqplot. BubbleRenderer autoscalePointsFactor, $.jqplot. BubbleRenderer axes, jqPlot axesDefaults, jqPlot axisDefaults, $.jqplot. LogAxisRenderer B background barDirection, $.jqplot. BarRenderer barLabelOptions, $.jqplot. MekkoAxisRenderer barLabelRenderer, $.jqplot. MekkoAxisRenderer barLabels, $.jqplot. MekkoAxisRenderer barMargin, $.jqplot. BarRenderer barPadding, $.jqplot. BarRenderer barWidth, $.jqplot. BarRenderer bodyWidth, $.jqplot. OHLCRenderer border, Legend borderColor borderWidth breakOnNull, Series breakPoints, $.jqplot. LinearAxisRenderer breakTickLabel, $.jqplot. LinearAxisRenderer bringSeriesToFront, $.jqplot. Highlighter bubbleAlpha, $.jqplot. BubbleRenderer bubbleGradients, $.jqplot. BubbleRenderer C candleStick, $.jqplot. OHLCRenderer clearRect, $.jqplot. shapeRenderer clickReset, $.jqplot. Cursor closeColor, $.jqplot. OHLCRenderer color constrainOutsideZoom, $.jqplot. Cursor constrainTo, $.jqplot. Dragable constrainZoomTo, $.jqplot. Cursor css, $.jqplot. BlockRenderer cursorLegendFormatString, $.jqplot. Cursor D dashPattern data, jqPlot dataLabelCenterOn, $.jqplot. PieRenderer dataLabelFormatString dataLabelNudge dataLabelPositionFactor dataLabels dataLabelThreshold dblClickReset, $.jqplot. Cursor defaultAxisStart, jqPlot depth, $.jqplot. shadowRenderer diameter disableIEFading disableStack, Series downBodyColor, $.jqplot. OHLCRenderer drawBorder, Grid drawGridlines, Grid E edgeTolerance, $.jqplot. PointLabels enableFontSupport escapeHtml escapeHTML - + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/Properties2.html b/phpgwapi/js/jquery/jqplot/docs/index/Properties2.html index 92c65bf74a..cead8c6b32 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/Properties2.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/Properties2.html @@ -11,33 +11,25 @@ if (browserType) {document.write("Property Index-
A activeTheme, $.jqplot. ThemeEngine alpha, $.jqplot. shadowRenderer angle autoscale, Axis autoscaleBubbles, $.jqplot. BubbleRenderer autoscaleMultiplier, $.jqplot. BubbleRenderer autoscalePointsFactor, $.jqplot. BubbleRenderer axes, jqPlot axesDefaults, jqPlot axisDefaults, $.jqplot. LogAxisRenderer B background bandData, $.jqplot. LineRenderer barDirection, $.jqplot. BarRenderer barLabelOptions, $.jqplot. MekkoAxisRenderer barLabelRenderer, $.jqplot. MekkoAxisRenderer barLabels, $.jqplot. MekkoAxisRenderer barMargin, $.jqplot. BarRenderer barPadding barWidth, $.jqplot. BarRenderer baselineColor baselineWidth bodyWidth, $.jqplot. OHLCRenderer border, Legend borderColor borderWidth breakOnNull, Series breakPoints, $.jqplot. LinearAxisRenderer breakTickLabel, $.jqplot. LinearAxisRenderer bringSeriesToFront, $.jqplot. Highlighter bubbleAlpha, $.jqplot. BubbleRenderer bubbleGradients, $.jqplot. BubbleRenderer C candleStick, $.jqplot. OHLCRenderer clearRect, $.jqplot. shapeRenderer clickReset, $.jqplot. Cursor closeColor, $.jqplot. OHLCRenderer color constrainOutsideZoom, $.jqplot. Cursor constrainSmoothing, $.jqplot. LineRenderer constrainTo, $.jqplot. Dragable constrainZoomTo, $.jqplot. Cursor css, $.jqplot. BlockRenderer cursorLegendFormatString, $.jqplot. Cursor Pointer to currently active theme
this.activeTheme=null alpha transparency of shadow stroke.
this.alpha = 0.07 angle of text, measured clockwise from x axis.
this.angle = 0 angle of text, measured clockwise from x axis.
this.angle = 0 Angle of the shadow in degrees.
this.angle = 45 Autoscale the axis min and max values to provide sensible tick spacing.
this.autoscale = false True to scale the bubble radius based on plot size.
this.autoscaleBubbles = true Multiplier the bubble size if autoscaleBubbles is true.
this.autoscaleMultiplier = 1.0 Factor which decreases bubble size based on how many bubbles on on the chart.
this.autoscalePointsFactor = -0.07 up to 4 axes are supported, each with it’s own options, See Axis for axis specific options.
this.axes = {xaxis: new Axis('xaxis'), yaxis: new Axis('yaxis'), x2axis: new Axis('x2axis'), y2axis: new Axis('y2axis'), y3axis: new Axis('y3axis'), y4axis: new Axis('y4axis'), y5axis: new Axis('y5axis'), y6axis: new Axis('y6axis'), y7axis: new Axis('y7axis'), y8axis: new Axis('y8axis'), y9axis: new Axis('y9axis')} default options that will be applied to all axes.+Default properties which will be applied directly to the series.Pointer to currently active theme
this.activeTheme=null alpha transparency of shadow stroke.
this.alpha = 0.07 angle of text, measured clockwise from x axis.
this.angle = 0 angle of text, measured clockwise from x axis.
this.angle = 0 Angle of the shadow in degrees.
this.angle = 45 DEPRECATED the default scaling algorithm produces superior results.
this.autoscale = false True to scale the bubble radius based on plot size.
this.autoscaleBubbles = true Multiplier the bubble size if autoscaleBubbles is true.
this.autoscaleMultiplier = 1.0 Factor which decreases bubble size based on how many bubbles on on the chart.
this.autoscalePointsFactor = -0.07 up to 4 axes are supported, each with it’s own options, See Axis for axis specific options.
this.axes = {xaxis: new Axis('xaxis'), yaxis: new Axis('yaxis'), x2axis: new Axis('x2axis'), y2axis: new Axis('y2axis'), y3axis: new Axis('y3axis'), y4axis: new Axis('y4axis'), y5axis: new Axis('y5axis'), y6axis: new Axis('y6axis'), y7axis: new Axis('y7axis'), y8axis: new Axis('y8axis'), y9axis: new Axis('y9axis'), yMidAxis: new Axis('yMidAxis')} default options that will be applied to all axes.-Default properties which will be applied directly to the series.background color of the inside of the gauge.
this.background = "#efefef" css spec for the background color.
this.background = '#fffdf6' css spec for the background of the legend box.
this.background ‘vertical’ = up and down bars, ‘horizontal’ = side to side bars
this.barDirection = 'vertical' options object to pass to the bar label renderer.
this.barLabelOptions = {} renderer to use to draw labels under each bar.
this.barLabelRenderer = $.jqplot.AxisLabelRenderer array of labels to put under each bar.
this.barLabels = this.barLabels || [] Number of pixels between groups of bars at adjacent axis values.
this.barMargin = 10 Number of pixels between adjacent bars at the same axis value.
this.barPadding = 8 Width of the bar in pixels (auto by devaul).
this.barWidth = null width of the candlestick body in pixels.
this.bodyWidth = 'auto' css spec for the border around the legend box.
this.border color of the borders between areas on the chart
this.borderColor = null color of the border adjacent to the axis.
this.borderColor = null css spec for the color of the grid border.
this.borderColor = '#999999' width of line stroked at the border of the axis.
this.borderWidth = null width of the border in pixels.
this.borderWidth = 2.0 Wether line segments should be be broken at null value.
this.breakOnNull = false EXPERIMENTAL!!
this.breakPoints = null Label to use at the axis break if breakPoints are specified.
this.breakTickLabel = "&asymp This option requires jQuery 1.4+ True to bring the series of the highlighted point to the front of other series.
this.bringSeriesToFront = false Alpha transparency to apply to all bubbles in this series.
this.bubbleAlpha = 1.0 +True to color the bubbles with gradient fills instead of flat colors.
this.bubbleGradients = false background color of the inside of the gauge.
this.background = "#efefef" css spec for the background color.
this.background = '#fffdf6' css spec for the background of the legend box.
this.background Data used to draw error bands or confidence intervals above/below a line.
this.renderer.bandData = [] ‘vertical’ = up and down bars, ‘horizontal’ = side to side bars
this.barDirection = 'vertical' options object to pass to the bar label renderer.
this.barLabelOptions = {} renderer to use to draw labels under each bar.
this.barLabelRenderer = $.jqplot.AxisLabelRenderer array of labels to put under each bar.
this.barLabels = this.barLabels || [] Number of pixels between groups of bars at adjacent axis values.
this.barMargin = 10
this.barPadding = 10 Number of pixels between adjacent bars at the same axis value.
this.barPadding = 8 Width of the bar in pixels (auto by devaul).
this.barWidth = null CSS color spec for the baseline.
this.baselineColor = null CSS color spec for the baseline.
this.baselineColor = null CSS color spec for the baseline.
this.baselineColor = null width of the baseline in pixels.
this.baselineWidth = null width of the baseline in pixels.
this.baselineWidth = null width of the baseline in pixels.
this.baselineWidth = null width of the candlestick body in pixels.
this.bodyWidth = 'auto' css spec for the border around the legend box.
this.border color of the borders between areas on the chart
this.borderColor = null color of the border adjacent to the axis.
this.borderColor = null css spec for the color of the grid border.
this.borderColor = '#999999' width of line stroked at the border of the axis.
this.borderWidth = null width of the border in pixels.
this.borderWidth = 2.0 Wether line segments should be be broken at null value.
this.breakOnNull = false EXPERIMENTAL!!
this.breakPoints = null Label to use at the axis break if breakPoints are specified.
this.breakTickLabel = "&asymp This option requires jQuery 1.4+ True to bring the series of the highlighted point to the front of other series.
this.bringSeriesToFront = false Alpha transparency to apply to all bubbles in this series.
this.bubbleAlpha = 1.0 -True to color the bubbles with gradient fills instead of flat colors.
this.bubbleGradients = false true to render chart as candleStick.
this.candleStick = false true to cear a rectangle.
this.clearRect = false Will reset plot zoom if single click on plot without drag.
this.clickReset = false color of the close price tick mark.
this.closeColor = null CSS color spec for the dragged point (and adjacent line segment or bar).
this.color color of marker.
this.color = '#666666' CSS color spec for the trend line.
this.color = '#666666' color of the linecolor of the linecolor of the linecolor of the linecss color spec for the series
this.color color of the lineTrue to limit actual zoom area to edges of grid, even when zooming outside of plot area.
this.constrainOutsideZoom = true Constrain dragging motion to an axis or to none.
this.constrainTo = 'none' ‘none’, ‘x’ or ‘y’
this.constrainZoomTo = 'none' default css styles that will be applied to all data blocks.
this.css = {padding:'2px', border:'1px solid #999', textAlign:'center'} - - - -Format string used in the cursor legend.
this.cursorLegendFormatString = $.jqplot.Cursor.cursorLegendFormatString Array of line, space settings in pixels.
dashPattern: [8,8] } Array of line, space settings in pixels.
dashPattern: [8,8] } user’s data.
this.data = [] True to center the data label at its position.
this.dataLabelCenterOn = true Format string for data labels.
this.dataLabelFormatString = null Format string for data labels.
this.dataLabelFormatString = null Format string for data labels.
this.dataLabelFormatString = null Number of pixels to slide the label away from (+) or toward (-) the center of the pie.
this.dataLabelNudge = 0 Number of pixels to slide the label away from (+) or toward (-) the center of the pie.
this.dataLabelNudge = 2 A Multiplier (0-1) of the pie radius which controls position of label on slice.
this.dataLabelPositionFactor = 0.4 A Multiplier (0-1) of the pie radius which controls position of label on slice.
this.dataLabelPositionFactor = 0.52 Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent' Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent' Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent'
this.dataLabelThreshold = 3
this.dataLabelThreshold = 3 Threshhold in percentage (0-100) of pie area, below which no label will be displayed.
this.dataLabelThreshold = 3 Will reset plot zoom if double click on plot without drag.
this.dblClickReset = true 1-D data series are internally converted into 2-D [x,y] data point arrays by jqPlot.
this.defaultAxisStart = 1 how many times the shadow is stroked.
this.depth = 3 Outer diameter of the donut, auto computed by default
this.diameter = null Outer diameter of the meterGauge, auto computed by default
this.diameter = null Outer diameter of the pie, auto computed by default
this.diameter = null true to toggle series with a show/hide method only and not allow fading in/out.
this.disableIEFading = true true to not stack this series with other series in the plot.
this.disableStack = false Color of candlestick body on a “down” day.
this.downBodyColor = null True to draw border around grid.
this.drawBorder = true - - - -wether to draw the gridlines on the plot.
this.drawGridlines = true Number of pixels that the label must be away from an axis boundary in order to be drawn.
this.edgeTolerance = -5 true to turn on native canvas font support in Mozilla 3.5+ and Safari 4+.
this.enableFontSupport = true true to turn on native canvas font support in Mozilla 3.5+ and Safari 4+.
this.enableFontSupport = true true to escape html in the box label.
this.escapeHtml = false True to escape html in bubble label text.
this.escapeHtml = true true to escape HTML entities in the label.
this.escapeHTML = false true to escape HTML entities in the label.
this.escapeHTML = false +true to escape html entities in the labels.
this.escapeHTML = true true to render chart as candleStick.
this.candleStick = false true to cear a rectangle.
this.clearRect = false Will reset plot zoom if single click on plot without drag.
this.clickReset = false color of the close price tick mark.
this.closeColor = null color of the lineCSS color spec for the dragged point (and adjacent line segment or bar).
this.color color of lines at top and bottom of bands [default: series color].color of marker.
this.color = '#666666' CSS color spec for the trend line.
this.color = '#666666' css color spec for the series
this.color True to limit actual zoom area to edges of grid, even when zooming outside of plot area.
this.constrainOutsideZoom = true True to use a more accurate smoothing algorithm that will not overshoot any data points.
this.renderer.constrainSmoothing = true Constrain dragging motion to an axis or to none.
this.constrainTo = 'none' ‘none’, ‘x’ or ‘y’
this.constrainZoomTo = 'none' default css styles that will be applied to all data blocks.
this.css = {padding:'2px', border:'1px solid #999', textAlign:'center'} Format string used in the cursor legend.
this.cursorLegendFormatString = $.jqplot.Cursor.cursorLegendFormatString ");if (browserV -Property Index+
F fadeTooltip, $.jqplot. Highlighter fill fillAlpha, Series fillAndStroke, Series fillAxis, Series fillColor, Series fillDownBody, $.jqplot. OHLCRenderer fillRect, $.jqplot. shapeRenderer fillStyle, $.jqplot. shapeRenderer fillToValue, Series fillToZero, Series fillUpBody, $.jqplot. OHLCRenderer followMouse, $.jqplot. Cursor fontFamily fontSize fontStretch fontWeight forceTickAt0, $.jqplot. LinearAxisRenderer forceTickAt100, $.jqplot. LinearAxisRenderer formatString formatter G grid, jqPlot gridLineColor, Grid gridLineWidth, Grid groups, $.jqplot. BarRenderer H hideZeros, $.jqplot. PointLabels highlightAlpha, $.jqplot. BubbleRenderer highlightColor, $.jqplot. LineRenderer highlightColors highlightMouseDown highlightMouseOver hlc, $.jqplot. OHLCRenderer hubRadius, $.jqplot. MeterGaugeRenderer I index, Series innerDiameter, $.jqplot. DonutRenderer insertBreaks, $.jqplot. BlockRenderer intersectionThreshold, $.jqplot. Cursor intervalColors, $.jqplot. MeterGaugeRenderer intervalInnerRadius, $.jqplot. MeterGaugeRenderer intervalOuterRadius, $.jqplot. MeterGaugeRenderer intervals, $.jqplot. MeterGaugeRenderer isarc isMinorTick L label labelHeightAdjust, $.jqplot. MeterGaugeRenderer labelOptions, Axis labelPosition labelRenderer, Axis labels labelsFromSeries, $.jqplot. PointLabels legend, jqPlot lineCap lineJoin lineWidth lineWidthAdjust, $.jqplot. Highlighter location looseZoom, $.jqplot. Cursor - + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/Properties3.html b/phpgwapi/js/jquery/jqplot/docs/index/Properties3.html index f912df5bde..68bb23e716 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/Properties3.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/Properties3.html @@ -11,33 +11,33 @@ if (browserType) {document.write("Property Index-
D dashPattern data, jqPlot dataLabelCenterOn, $.jqplot. PieRenderer dataLabelFormatString dataLabelNudge dataLabelPositionFactor dataLabels dataLabelThreshold dataRenderer, jqPlot dataRendererOptions, jqPlot dblClickReset, $.jqplot. Cursor defaultAxisStart, jqPlot depth, $.jqplot. shadowRenderer diameter disableIEFading disableStack, Series downBodyColor, $.jqplot. OHLCRenderer drawBaseline drawBorder, Grid drawGridlines, Grid drawMajorGridlines, Axis drawMajorTickMarks, Axis drawMinorGridlines, Axis drawMinorTickMarks, Axis E edgeTolerance, $.jqplot. PointLabels enableFontSupport escapeHtml escapeHTML F fadeTooltip fill fillAlpha, Series fillAndStroke, Series fillAxis, Series fillColor fillDownBody, $.jqplot. OHLCRenderer fillRect, $.jqplot. shapeRenderer fillStyle, $.jqplot. shapeRenderer fillToValue, Series fillToZero, Series fillUpBody, $.jqplot. OHLCRenderer followMouse, $.jqplot. Cursor fontFamily fontSize fontStretch fontWeight forceTickAt0, $.jqplot. LinearAxisRenderer forceTickAt100, $.jqplot. LinearAxisRenderer formatString formatter true = fade in/out tooltip, flase = show/hide tooltip
this.fadeTooltip = true true or false, wether to fil the slices.
this.fill = true true or false, wether to fill the areas.
this.fill = true true or false, wether to fil the slices.
this.fill = true whether to fill the shape.
this.fill = false whether to fill the shape.
this.fill = false true or false, wether to fill under lines or in bars.
this.fill = false Alpha transparency to apply to the fill under the line.
this.fillAlpha If true will stroke the line (with color this.color) as well as fill under it.
this.fillAndStroke = false Either ‘x’ or ‘y’.
this.fillAxis = 'y' CSS color spec to use for fill under line.
this.fillColor true to render a “down” day (close price lower than open price) with a filled candlestick body.
this.fillDownBody = true true to draw shape as a filled rectangle.
this.fillRect = false css color spec for the fill style.
this.fillStyle = '#999999' fill a filled series to this value on the fill axis.
this.fillToValue = 0 true will force bar and filled series to fill toward zero on the fill Axis.
this.fillToZero = false true to render an “up” day (close price greater than open price) with a filled candlestick body.
this.fillUpBody = false Tooltip follows the mouse, it is not at a fixed location.
this.followMouse = false css spec for the font-family css attribute.
this.fontFamily CSS spec for the font-family css attribute.
this.fontFamily = '"Trebuchet MS", Arial, Helvetica, sans-serif' css spec for the font-family css attribute.
this.fontFamily = '"Trebuchet MS", Arial, Helvetica, sans-serif' css font-family spec for the legend text.
this.fontFamily css font-family spec for the text.
this.fontFamily css spec for the font-size css attribute.
this.fontSize CSS spec for font size.
this.fontSize = '11pt' CSS spec for font size.
this.fontSize = '10pt' css spec for the font-size attribute.
this.fontSize css font-size spec for the legend text.
this.fontSize css font-size spec for the text.
this.fontSize Multiplier to condense or expand font width.
this.fontStretch = 1.0 Multiplier to condense or expand font width.
this.fontStretch = 1.0
this.fontWeight = 'normal' CSS spec for fontWeight
this.fontWeight = 'normal' This will ensure that there is always a tick mark at 0.
this.forceTickAt0 = false This will ensure that there is always a tick mark at 100.
this.forceTickAt100 = false string passed to the formatter.
this.formatString = '' string passed to the formatter.
this.formatString = '' alternative to tooltipFormatString will format the whole tooltip text, populating with x, y values as indicated by tooltipAxes option.
this.formatString = null string passed to the formatter.
this.formatString = '' A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter +A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter Array of line, space settings in pixels.
dashPattern: [8,8] } Array of line, space settings in pixels.
dashPattern: [8,8] } user’s data.
this.data = [] True to center the data label at its position.
this.dataLabelCenterOn = true Format string for data labels.
this.dataLabelFormatString = null Format string for data labels.
this.dataLabelFormatString = null Format string for data labels.
this.dataLabelFormatString = null Number of pixels to slide the label away from (+) or toward (-) the center of the pie.
this.dataLabelNudge = 0 Number of pixels to slide the label away from (+) or toward (-) the center of the pie.
this.dataLabelNudge = 2 A Multiplier (0-1) of the pie radius which controls position of label on slice.
this.dataLabelPositionFactor = 0.4 A Multiplier (0-1) of the pie radius which controls position of label on slice.
this.dataLabelPositionFactor = 0.52 Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent' Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent' Either ‘label’, ‘value’, ‘percent’ or an array of labels to place on the pie slices.
this.dataLabels = 'percent'
this.dataLabelThreshold = 3
this.dataLabelThreshold = 3 Threshhold in percentage (0-100) of pie area, below which no label will be displayed.
this.dataLabelThreshold = 3 A callable which can be used to preprocess data passed into the plot.
this.dataRenderer Options that will be passed to the dataRenderer.
this.dataRendererOptions Will reset plot zoom if double click on plot without drag.
this.dblClickReset = true 1-D data series are internally converted into 2-D [x,y] data point arrays by jqPlot.
this.defaultAxisStart = 1 how many times the shadow is stroked.
this.depth = 3 Outer diameter of the donut, auto computed by default
this.diameter = null Outer diameter of the meterGauge, auto computed by default
this.diameter = null Outer diameter of the pie, auto computed by default
this.diameter = null true to toggle series with a show/hide method only and not allow fading in/out.
this.disableIEFading = true true to not stack this series with other series in the plot.
this.disableStack = false Color of candlestick body on a “down” day.
this.downBodyColor = null True to draw the axis baseline.
this.drawBaseline = true True to draw the axis baseline.
this.drawBaseline = true True to draw the axis baseline.
this.drawBaseline = true True to draw the axis baseline.
this.drawBaseline = true True to draw border around grid.
this.drawBorder = true wether to draw the gridlines on the plot.
this.drawGridlines = true True to draw gridlines for major axis ticks.
this.drawMajorGridlines = true True to draw tick marks for major axis ticks.
this.drawMajorTickMarks = true True to draw gridlines for minor ticks.
this.drawMinorGridlines = false -True to draw tick marks for minor ticks.
this.drawMinorTickMarks = true See Grid for grid specific options.
this.grid = new Grid() color of the grid lines.
this.gridLineColor = '#cccccc' width of the grid lines.
this.gridLineWidth = 1.0 +group bars into this many groups
this.groups = 1 Number of pixels that the label must be away from an axis boundary in order to be drawn.
this.edgeTolerance = -5 true to turn on native canvas font support in Mozilla 3.5+ and Safari 4+.
this.enableFontSupport = true true to turn on native canvas font support in Mozilla 3.5+ and Safari 4+.
this.enableFontSupport = true true to escape html in the box label.
this.escapeHtml = false True to escape html in bubble label text.
this.escapeHtml = true True to escape special characters with their html entity equivalents in legend text.
this.escapeHtml = false True to escape special characters with their html entity equivalents in title text.
this.escapeHtml = false true to escape HTML entities in the label.
this.escapeHTML = false true to escape HTML entities in the label.
this.escapeHTML = false -true to escape html entities in the labels.
this.escapeHTML = true true to not show a label for a value which is 0.
this.hideZeros = false Alpha transparency to apply when highlighting bubble.
this.highlightAlpha = null color to use when highlighting an area on a filled plot.
this.highlightColor = null an array of colors to use when highlighting a bar.
this.highlightColors = [] An array of colors to use when highlighting a slice.
this.highlightColors = [] an array of colors to use when highlighting a slice.
this.highlightColors = [] array of colors to use when highlighting an area.
this.highlightColors = [] an array of colors to use when highlighting a slice.
this.highlightColors = [] True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a bubble.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a area.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over an area on a filled plot.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight bubbles when moused over.
this.highlightMouseOver = true True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight area when moused over.
this.highlightMouseOver = true True to highlight area on a filled plot when moused over.
this.highlightMouseOver = true True to highlight slice when moused over.
this.highlightMouseOver = true true if is a hi-low-close chart (no open price).
this.hlc = false - - - -Radius of the hub at the bottom center of gauge which the needle attaches to.
this.hubRadius = null 0 based index of this series in the plot series array.
this.index Inner diameter of the donut, auto calculated by default.
this.innerDiameter = null true to turn spaces in data block label into html breaks br /.
this.insertBreaks = true pixel distance from data point or marker to consider cursor lines intersecting with point.
this.intersectionThreshold = 2 Array of colors to use for the intervals.
this.intervalColors = [ "#4bb2c5", "#EAA228", "#c5b47f", "#579575", "#839557", "#958c12", "#953579", "#4b5de4", "#d8b83f", "#ff5800", "#0085cc", "#c747a3", "#cddf54", "#FBD178", "#26B4E3", "#bd70c7"] Radius of the inner circle of the interval ring.
this.intervalInnerRadius = null Radius of the outer circle of the interval ring.
this.intervalOuterRadius = null Array of ranges to be drawn around the gauge.
this.intervals = [] wether the shadow is an arc or not.
this.isarc = false wether the shadow is an arc or not.
this.isarc = false if this is a minor tick.
this.isMinorTick = false - - - -if this is a minor tick.
this.isMinorTick = false The text or html for the label.
this.label = '' label for the axis.
this.label = '' A gauge label like ‘kph’ or ‘Volts’
this.label = null Label for the trend line to use in the legend.
this.label = '' Label for the axis
this.label = null Line label to use in the legend.
this.label = '' Number of Pixels to offset the label up (-) or down (+) from its default position.
this.labelHeightAdjust = 0 Options passed to the label renderer.
this.labelOptions = {} ‘auto’, ‘start’, ‘middle’ or ‘end’.
this.labelPosition = 'auto' Where to position the label, either ‘inside’ or ‘bottom’.
this.labelPosition = 'inside' A class of a rendering engine for creating an axis label.
this.labelRenderer = $.jqplot.AxisLabelRenderer array of arrays of labels, one array for each series.
this.labels = [] Array of labels to use.
this.labels = [] true to use labels within data point arrays.
this.labelsFromSeries = false see $.jqplot.TableLegendRenderer
this.legend = new Legend() how ends of the shadow line are rendered.
this.lineCap = 'round' how ends of the shadow line are rendered.
this.lineCap = 'round' Type of ending placed on the line [‘round’, ‘butt’, ‘square’]Type of ending placed on the line [‘round’, ‘butt’, ‘square’]Type of ending placed on the line [‘round’, ‘butt’, ‘square’]Type of ending placed on the line [‘round’, ‘butt’, ‘square’]Canvas lineCap style at ends of line.
this.lineCap = 'round' Type of ending placed on the line [‘round’, ‘butt’, ‘square’]How line segments of the shadow are joined.
this.lineJoin = 'miter' How line segments of the shadow are joined.
this.lineJoin = 'miter' Canvas lineJoin style between segments of series.
this.lineJoin = 'round' width of line if areas are stroked and not filled.
this.lineWidth = 2 size of the line for non-filled markers.
this.lineWidth = 2 Width of the hi-low line and open/close ticks.
this.lineWidth = 1.5 width of the shadow line stroke.
this.lineWidth = 1.5 Width of the trend line.
this.lineWidth = 1.5 Width of the line.Width of the line.Width of the line.Width of the line.width of the line in pixels.
this.lineWidth = 2.5 Width of the line.Pixels to add to the lineWidth of the highlight.
this.lineWidthAdjust = 2.5 compass location where to position the label around the point.
this.location = 'n' Placement of the legend.
this.location = 'ne' +Will expand zoom range to provide more rounded tick values.
this.looseZoom = false true = fade in/out tooltip, flase = show/hide tooltiptrue = fade in/out tooltip, flase = show/hide tooltip
this.fadeTooltip = true True to fill the bars.
this.fill = true true or false, wether to fil the slices.
this.fill = true true or false, wether to fill the areas.
this.fill = true True to fill area between bands [default: true].true or false, wether to fil the slices.
this.fill = true whether to fill the shape.
this.fill = false whether to fill the shape.
this.fill = false true or false, wether to fill under lines or in bars.
this.fill = false Alpha transparency to apply to the fill under the line.
this.fillAlpha If true will stroke the line (with color this.color) as well as fill under it.
this.fillAndStroke = false Either ‘x’ or ‘y’.
this.fillAxis = 'y' css color spec for filled area.CSS color spec to use for fill under line.
this.fillColor true to render a “down” day (close price lower than open price) with a filled candlestick body.
this.fillDownBody = true true to draw shape as a filled rectangle.
this.fillRect = false css color spec for the fill style.
this.fillStyle = '#999999' fill a filled series to this value on the fill axis.
this.fillToValue = 0 true will force bar and filled series to fill toward zero on the fill Axis.
this.fillToZero = false true to render an “up” day (close price greater than open price) with a filled candlestick body.
this.fillUpBody = false Tooltip follows the mouse, it is not at a fixed location.
this.followMouse = false css spec for the font-family css attribute.
this.fontFamily CSS spec for the font-family css attribute.
this.fontFamily = '"Trebuchet MS", Arial, Helvetica, sans-serif' css spec for the font-family css attribute.
this.fontFamily = '"Trebuchet MS", Arial, Helvetica, sans-serif' css font-family spec for the legend text.
this.fontFamily css font-family spec for the text.
this.fontFamily css spec for the font-size css attribute.
this.fontSize CSS spec for font size.
this.fontSize = '11pt' CSS spec for font size.
this.fontSize = '10pt' css spec for the font-size attribute.
this.fontSize css font-size spec for the legend text.
this.fontSize css font-size spec for the text.
this.fontSize Multiplier to condense or expand font width.
this.fontStretch = 1.0 Multiplier to condense or expand font width.
this.fontStretch = 1.0
this.fontWeight = 'normal' CSS spec for fontWeight
this.fontWeight = 'normal' This will ensure that there is always a tick mark at 0.
this.forceTickAt0 = false This will ensure that there is always a tick mark at 100.
this.forceTickAt100 = false string passed to the formatter.
this.formatString = '' string passed to the formatter.
this.formatString = '' alternative to tooltipFormatString will format the whole tooltip text, populating with x, y values as indicated by tooltipAxes option.
this.formatString = null string passed to the formatter.
this.formatString = '' A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter A class of a formatter for the tick text.
this.formatter = $.jqplot.DefaultTickFormatter ");if (browserV -Property Index+
M marginBottom, Legend marginLeft, Legend marginRight, Legend marginTop, Legend mark markerOptions, Series markerRenderer markSize max min N name needlePad, $.jqplot. MeterGaugeRenderer needleThickness, $.jqplot. MeterGaugeRenderer neighborThreshold, Series numberColumns numberRows numberTicks, Axis O objects, $.jqplot. CanvasOverlay offset, $.jqplot. shadowRenderer openColor, $.jqplot. OHLCRenderer P pad, Axis padding padMax, Axis padMin, Axis pegNeedle, $.jqplot. MeterGaugeRenderer placement, Legend predraw, Legend prefix pt2px R renderer rendererOptions ringColor, $.jqplot. MeterGaugeRenderer ringMargin, $.jqplot. DonutRenderer ringWidth, $.jqplot. MeterGaugeRenderer rowSpacing, Legend - + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/Properties4.html b/phpgwapi/js/jquery/jqplot/docs/index/Properties4.html index e29ed69d07..195972fd42 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/Properties4.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/Properties4.html @@ -11,17 +11,29 @@ if (browserType) {document.write("Property Index-
G grid, jqPlot gridLineColor, Grid gridLineWidth, Grid groups, $.jqplot. BarRenderer H hideZeros, $.jqplot. PointLabels highlightAlpha, $.jqplot. BubbleRenderer highlightColor, $.jqplot. LineRenderer highlightColors highlightMouseDown highlightMouseOver hlc, $.jqplot. OHLCRenderer hubRadius, $.jqplot. MeterGaugeRenderer I index, Series innerDiameter, $.jqplot. DonutRenderer insertBreaks, $.jqplot. BlockRenderer intersectionThreshold, $.jqplot. Cursor interval, $.jqplot. LineRenderer intervalColors, $.jqplot. MeterGaugeRenderer intervalInnerRadius, $.jqplot. MeterGaugeRenderer intervalOuterRadius, $.jqplot. MeterGaugeRenderer intervals, $.jqplot. MeterGaugeRenderer isarc isMinorTick L label labelHeightAdjust, $.jqplot. MeterGaugeRenderer labelOptions, Axis labelPosition labelRenderer, Axis labels labelsFromSeries, $.jqplot. PointLabels legend, jqPlot lineCap lineJoin linePattern lineWidth lineWidthAdjust, $.jqplot. Highlighter location looseZoom, $.jqplot. Cursor M marginBottom, Legend marginLeft, Legend marginRight, Legend marginTop, Legend mark markerOptions, Series markerRenderer markSize max min minorTicks, $.jqplot. LinearAxisRenderer CSS margin for the legend DOM element.
this.marginBottom = null CSS margin for the legend DOM element.
this.marginLeft = null CSS margin for the legend DOM element.
this.marginRight = null CSS margin for the legend DOM element.
this.marginTop = null tick mark on the axis.
this.mark = 'outside' tick mark on the axis.
this.mark = 'outside' renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer.
this.markerOptions = {} Renderer used to draw the marker of the highlighted point.
this.markerRenderer = new $.jqplot.MarkerRenderer( {shadow:false} ) Renderer to use to draw markers on the line.
this.markerRenderer = {show:false} A class of a renderer which will draw marker (e.g.
this.markerRenderer = $.jqplot.MarkerRenderer Length of the tick marks in pixels.
this.markSize = 6 Length of the tick marks in pixels.
this.markSize = 4 Maximum value on the gauge.
this.max maximum value of the axis (in data units, not pixels).
this.max=null Minimum value on the gauge.
this.min +minimum value of the axis (in data units, not pixels).
this.min=null See Grid for grid specific options.
this.grid = new Grid() color of the grid lines.
this.gridLineColor = '#cccccc' width of the grid lines.
this.gridLineWidth = 1.0 -group bars into this many groups
this.groups = 1 Optional name for this overlay object.Optional name for this overlay object.Optional name for this overlay object.Optional name for this overlay object.Optional name for this overlay object.Padding between needle and inner edge of the ring when the needle is at the min or max gauge value.
this.needlePad = 6 Maximum thickness the needle.
this.needleThickness = null how close or far (in pixels) the cursor must be from a point marker to detect the point.
this.neighborThreshold = 4 Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null +Desired number of ticks.
this.numberTicks true to not show a label for a value which is 0.
this.hideZeros = false Alpha transparency to apply when highlighting bubble.
this.highlightAlpha = null color to use when highlighting an area on a filled plot.
this.highlightColor = null an array of colors to use when highlighting a slice.
this.highlightColors = [] an array of colors to use when highlighting a bar.
this.highlightColors = [] An array of colors to use when highlighting a slice.
this.highlightColors = [] an array of colors to use when highlighting a slice.
this.highlightColors = [] array of colors to use when highlighting an area.
this.highlightColors = [] an array of colors to use when highlighting a slice.
this.highlightColors = [] True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a bubble.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a area.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over an area on a filled plot.
this.highlightMouseDown = false True to highlight when a mouse button is pressed over a slice.
this.highlightMouseDown = false True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight bubbles when moused over.
this.highlightMouseOver = true True to highlight slice when moused over.
this.highlightMouseOver = true True to highlight area when moused over.
this.highlightMouseOver = true True to highlight area on a filled plot when moused over.
this.highlightMouseOver = true True to highlight slice when moused over.
this.highlightMouseOver = true true if is a hi-low-close chart (no open price).
this.hlc = false -Radius of the hub at the bottom center of gauge which the needle attaches to.
this.hubRadius = null
this.objects = [] Pixel offset at the given shadow angle of each shadow stroke from the last stroke.
this.offset = 1 +color of the open price tick mark.
this.openColor = null 0 based index of this series in the plot series array.
this.index Inner diameter of the donut, auto calculated by default.
this.innerDiameter = null true to turn spaces in data block label into html breaks br /.
this.insertBreaks = true pixel distance from data point or marker to consider cursor lines intersecting with point.
this.intersectionThreshold = 2 User specified interval above and below line for bands [default: ‘3%’’].
interval: '3%' } Array of colors to use for the intervals.
this.intervalColors = [ "#4bb2c5", "#EAA228", "#c5b47f", "#579575", "#839557", "#958c12", "#953579", "#4b5de4", "#d8b83f", "#ff5800", "#0085cc", "#c747a3", "#cddf54", "#FBD178", "#26B4E3", "#bd70c7"] Radius of the inner circle of the interval ring.
this.intervalInnerRadius = null Radius of the outer circle of the interval ring.
this.intervalOuterRadius = null Array of ranges to be drawn around the gauge.
this.intervals = [] wether the shadow is an arc or not.
this.isarc = false wether the shadow is an arc or not.
this.isarc = false if this is a minor tick.
this.isMinorTick = false -if this is a minor tick.
this.isMinorTick = false Padding to extend the range above and below the data bounds.
this.pad = 1.2 padding between the donut and plot edges, legend, etc.
this.padding = 20 padding between the funnel and plot edges, legend, etc.
this.padding = {top: 20, right: 20, bottom: 20, left: 20} padding between the meterGauge and plot edges, auto calculated by default.
this.padding = null padding between the pie and plot edges, legend, etc.
this.padding = 20 Padding to extend the range above data bounds.
this.padMax = null Padding to extend the range below data bounds.
this.padMin = null True will stop needle just below/above the min/max values if data is below/above min/max, as if the meter is “pegged”.
this.pegNeedle = true “insideGrid” places legend inside the grid area of the plot.
this.placement = "insideGrid" Wether to draw the legend before the series or not.String to prepend to the tick label.
this.prefix = '' String to prepend to the tick label.
this.prefix = '' Point to pixel scaling factor, used for computing height of bounding box around a label.
this.pt2px = null +Point to pixel scaling factor, used for computing height of bounding box around a label.
this.pt2px = null The text or html for the label.
this.label = '' label for the axis.
this.label = '' A gauge label like ‘kph’ or ‘Volts’
this.label = null Label for the trend line to use in the legend.
this.label = '' Label for the axis
this.label = null Line label to use in the legend.
this.label = '' Number of Pixels to offset the label up (-) or down (+) from its default position.
this.labelHeightAdjust = 0 Options passed to the label renderer.
this.labelOptions = {} ‘auto’, ‘start’, ‘middle’ or ‘end’.
this.labelPosition = 'auto' Where to position the label, either ‘inside’ or ‘bottom’.
this.labelPosition = 'inside' A class of a rendering engine for creating an axis label.
this.labelRenderer = $.jqplot.AxisLabelRenderer array of arrays of labels, one array for each series.
this.labels = [] Array of labels to use.
this.labels = [] true to use labels within data point arrays.
this.labelsFromSeries = false see $.jqplot.TableLegendRenderer
this.legend = new Legend() Type of ending placed on the line [‘round’, ‘butt’, ‘square’]how ends of the shadow line are rendered.
this.lineCap = 'round' how ends of the shadow line are rendered.
this.lineCap = 'round' Canvas lineCap style at ends of line.
this.lineCap = 'round' How line segments of the shadow are joined.
this.lineJoin = 'miter' How line segments of the shadow are joined.
this.lineJoin = 'miter' Canvas lineJoin style between segments of series.
this.lineJoin = 'round' line pattern ‘dashed’, ‘dotted’, ‘solid’, some combination of ‘-’ and ‘.’
this.linePattern = 'solid' line pattern ‘dashed’, ‘dotted’, ‘solid’, some combination of ‘-’ and ‘.’
this.linePattern = 'solid' Width of the line.width of line if areas are stroked and not filled.
this.lineWidth = 2 size of the line for non-filled markers.
this.lineWidth = 2 Width of the hi-low line and open/close ticks.
this.lineWidth = 1.5 width of the shadow line stroke.
this.lineWidth = 1.5 Width of the trend line.
this.lineWidth = 1.5 width of the line in pixels.
this.lineWidth = 2.5 Pixels to add to the lineWidth of the highlight.
this.lineWidthAdjust = 2.5 compass location where to position the label around the point.
this.location = 'n' Placement of the legend.
this.location = 'ne' -Will expand zoom range to provide more rounded tick values.
this.looseZoom = false Renderer to use to draw the trend line.
this.renderer = new $.jqplot.LineRenderer() A class of a rendering engine that handles tick generation, scaling input data to pixel grid units and drawing the axis element.
this.renderer = $.jqplot.LinearAxisRenderer Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer.
this.renderer = $.jqplot.CanvasGridRenderer A class of a renderer which will draw the series, see $.jqplot.LineRenderer.
this.renderer = $.jqplot.LineRenderer A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer.
this.renderer = $.jqplot.DivTitleRenderer Options to pass to the line renderer.
this.rendererOptions = {marker:{show:false}} renderer specific options.
this.rendererOptions = {} Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer.
this.rendererOptions = {} renderer specific options passed to the renderer.
this.rendererOptions = {} Options to pass on to the renderer.
this.rendererOptions = {} renderer specific options passed to the renderer.
this.rendererOptions = {} color of the outer ring, hub, and needle of the gauge.
this.ringColor = "#BBC6D0" pixel distance between rings, or multiple series in a donut plot.
this.ringMargin = null width of the ring around the gauge.
this.ringWidth = null +css padding-top spec for the rows in the legend.
this.rowSpacing = '0.5em' CSS margin for the legend DOM element.
this.marginBottom = null CSS margin for the legend DOM element.
this.marginLeft = null CSS margin for the legend DOM element.
this.marginRight = null CSS margin for the legend DOM element.
this.marginTop = null tick mark on the axis.
this.mark = 'outside' tick mark on the axis.
this.mark = 'outside' renderer specific options to pass to the markerRenderer, see $.jqplot.MarkerRenderer.
this.markerOptions = {} Renderer used to draw the marker of the highlighted point.
this.markerRenderer = new $.jqplot.MarkerRenderer( {shadow:false} ) Renderer to use to draw markers on the line.
this.markerRenderer = {show:false} A class of a renderer which will draw marker (e.g.
this.markerRenderer = $.jqplot.MarkerRenderer Length of the tick marks in pixels.
this.markSize = 6 Length of the tick marks in pixels.
this.markSize = 4 Maximum value on the gauge.
this.max maximum value of the axis (in data units, not pixels).
this.max = null Minimum value on the gauge.
this.min minimum value of the axis (in data units, not pixels).
this.min = null Number of ticks to add between “major” ticks.
this.minorTicks = 0 ");if (browserV -Property Index+
S sectionMargin, $.jqplot. FunnelRenderer series, jqPlot seriesColors, jqPlot seriesDefaults, jqPlot seriesLabelIndex, $.jqplot. PointLabels seriesToggle shadow shadowAlpha shadowAngle shadowColor, Grid shadowDepth shadowOffset shadowRenderer, $.jqplot. MarkerRenderer shadowWidth, Grid shapeRenderer, $.jqplot. MarkerRenderer show showBorders, $.jqplot. MekkoRenderer showCursorLegend, $.jqplot. Cursor showDataLabels showGridline showHorizontalLine, $.jqplot. Cursor showLabel showLabels showLine, Series showMark showMarker showMinorTicks, Axis showSwatch, Legend showTickLabels, $.jqplot. MeterGaugeRenderer showTickMarks, Axis showTicks showTooltip showTooltipDataPosition, $.jqplot. Cursor showTooltipGridPosition, $.jqplot. Cursor showTooltipOutsideZoom, $.jqplot. Cursor showTooltipUnitPosition, $.jqplot. Cursor showVerticalLine, $.jqplot. Cursor size sizeAdjust, $.jqplot. Highlighter sliceMargin sortData, jqPlot sortMergedLabels, $.jqplot. CategoryAxisRenderer stackedValue, $.jqplot. PointLabels stackSeries, jqPlot start, Line startAngle stop, Line strokeRect, $.jqplot. shapeRenderer strokeStyle, $.jqplot. shapeRenderer style syncTicks, Axis - + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/Properties5.html b/phpgwapi/js/jquery/jqplot/docs/index/Properties5.html index 308354ef15..65bfb84a44 100644 --- a/phpgwapi/js/jquery/jqplot/docs/index/Properties5.html +++ b/phpgwapi/js/jquery/jqplot/docs/index/Properties5.html @@ -11,41 +11,17 @@ if (browserType) {document.write("Property Index-
N name, $.jqplot. CanvasOverlay needlePad, $.jqplot. MeterGaugeRenderer needleThickness, $.jqplot. MeterGaugeRenderer negativeColor, Series neighborThreshold, Series noDataIndicator, jqPlot numberColumns numberRows numberTicks, Axis O objects, $.jqplot. CanvasOverlay offset, $.jqplot. shadowRenderer openColor, $.jqplot. OHLCRenderer P pad, Axis padding padMax, Axis padMin, Axis pegNeedle, $.jqplot. MeterGaugeRenderer placement, Legend position predraw, Legend prefix pt2px R renderer rendererOptions ringColor, $.jqplot. MeterGaugeRenderer ringMargin, $.jqplot. DonutRenderer ringWidth, $.jqplot. MeterGaugeRenderer rowSpacing, Legend spacing between funnel sections in pixels.
this.sectionMargin = 6 Array of series object options.
this.series = [] Ann array of CSS color specifications that will be applied, in order, to the series in the plot.
this.seriesColors = $.jqplot.config.defaultColors default options that will be applied to all series.
seriesDefaults: {}, series:[] } array index for location of labels within data point arrays.
this.seriesLabelIndex = null false to not enable series on/off toggling on the legend.
this.seriesToggle = 'normal' wether or not to draw a shadow on the line
this.shadow = true true or false, wether or not to show the shadow.
this.shadow = true wether or not to draw a shadow on the linewether or not to draw a shadow on the linewether to show a shadow behind the grid.
this.shadow = true wether or not to draw a shadow on the linewether or not to draw a shadow on the linewether or not to draw a shadow on the line
this.shadow = true wether or not to draw a shadow on the linetransparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.08 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 Alpha channel transparency of shadow.
this.shadowAlpha = '0.07' transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 Alpha transparency of the shadow.
this.shadowAlpha = 0.07 Alpha channel transparency of shadow.Alpha channel transparency of shadow.Alpha channel transparency of shadow.
this.shadowAlpha = '0.07' Alpha channel transparency of shadow.Alpha channel transparency of shadow.Alpha channel transparency of shadow.
this.shadowAlpha = '0.1' Alpha channel transparency of shadow.Shadow angle in degrees
this.shadowAngle = 45 Angle of the shadow on the trend line.
this.shadowAngle = 45 Shadow angle in degreesShadow angle in degreesshadow angle in degrees
this.shadowAngle = 45 Shadow angle in degreesShadow angle in degreesShadow angle in degrees
this.shadowAngle = 45 Shadow angle in degreesan optional css color spec for the shadow in ‘rgba(n, n, n, n)’ form
this.shadowColor = null number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 4 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 number of strokes to make of the shadow.
this.shadowDepth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.Number of times shadow is stroked, each stroke offset shadowOffset from the last.Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.Number of times shadow is stroked, each stroke offset shadowOffset from the last.Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 offset of the shadow from the area and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 Shadow offset from line in pixels
this.shadowOffset = 1 offset of the shadow from the gauge ring and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 pixel offset for each stroke of the shadow.
this.shadowOffset = 1.0 Shadow offset from line in pixelsShadow offset from line in pixelsOffset of each shadow stroke from the border in pixels
this.shadowOffset = 1.5 Shadow offset from line in pixelsShadow offset from line in pixelsShadow offset from line in pixels
this.shadowOffset = 1.25 Shadow offset from line in pixelsRenderer that will draws the shadows on the marker.
this.shadowRenderer = new $.jqplot.ShadowRenderer() width of the stoke for the shadow
this.shadowWidth = 3 Renderer that will draw the marker.
this.shapeRenderer = new $.jqplot.ShapeRenderer() wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true wether to show the cursor or not.
this.show = $.jqplot.config.enablePlugins true to show the highlight.
this.show = $.jqplot.config.enablePlugins wether or not to show the marker.
this.show = true show the labels or not.
this.show = $.jqplot.config.enablePlugins Wether or not to show the trend line.
this.show = $.jqplot.config.enablePlugins Wether to display the axis on the graph.
this.show = false true to show (draw), false to not draw.true to show (draw), false to not draw.true to show (draw), false to not draw.Wether to display the legend on the graph.
this.show = false true to show (draw), false to not draw.wether or not to draw the series.
this.show = true wether or not to show the title
this.show = true true to show (draw), false to not draw.True to draw borders lines between areas on the chart.
this.showBorders = true Replace the plot legend with an enhanced legend displaying intersection information.
this.showCursorLegend = false true to show data labels on slices.
this.showDataLabels = false true to show data labels on slices.
this.showDataLabels = false true to show data labels on slices.
this.showDataLabels = false wether or not to draw the gridline on the grid at this tick.
this.showGridline = true wether or not to draw the gridline on the grid at this tick.
this.showGridline = true draw a horizontal line across the plot which follows the cursor.
this.showHorizontalLine = false wether or not to show the label.
this.showLabel = true wether or not to show the label.
this.showLabel = true wether or not to show the label.
this.showLabel = true true to show the axis label.
this.showLabel = true true to show label for this series in the legend.
this.showLabel = true True to show labels on bubbles (if any), false to not show.
this.showLabels = true true to show the label text on the legend.
this.showLabels = true wether to actually draw the line or not.
this.showLine = true wether or not to show the mark on the axis.
this.showMark = true wether or not to show the mark on the axis.
this.showMark = true true to show the marker
this.showMarker = true wether or not to show the markers at the data points.
this.showMarker = true Wether or not to show minor ticks.
this.showMinorTicks = true true to show the color swatches on the legend.
this.showSwatches = true true to show tick labels next to ticks.
this.showTickLabels = true Wether to show the tick marks (line crossing grid) or not.
this.showTickMarks = true true to show ticks around gauge.
this.showTicks = true Wether to show the ticks (both marks and labels) or not.
this.showTicks = true show a cursor position tooltip.
this.showTooltip = true Show a tooltip with data point values.
this.showTooltip = true Used with showVerticalLine to show intersecting data points in the tooltip.
this.showTooltipDataPosition = false show the grid pixel coordinates of the mouse.
this.showTooltipGridPosition = false True will keep updating the tooltip when zooming of the grid.
this.showTooltipOutsideZoom = false show the unit (data) coordinates of the mouse.
this.showTooltipUnitPosition = true draw a vertical line across the plot which follows the cursor.
this.showVerticalLine = false Length of the tick beyond the grid in pixels.
this.size = 4 Size of the marker (diameter or circle, length of edge of square, etc.)
this.size = 9.0 Pixels to add to the overall size of the highlight.
this.sizeAdjust = 5 angular spacing between donut slices in degrees.
this.sliceMargin = 0 angular spacing between pie slices in degrees.
this.sliceMargin = 0 false to not sort the data passed in by the user.
this.sortData = true True to sort tick labels when labels are created by merging x axis values from multiple series.
this.sortMergedLabels = false true to display value as stacked in a stacked plot.
this.stackedValue = false true or false, creates a stack or “mountain” plot.
this.stackSeries = false [x, y] coordinates for the start of the line.Angle to start drawing donut in degrees.
this.startAngle = 0 Angle to start drawing pie in degrees.
this.startAngle = 0 [x, y] coordinates for the end of the line.
stop: [] } true to draw shape as a stroked rectangle.
this.strokeRect = false css color spec for the stoke style
this.strokeStyle = '#999999' CSS spec for cursor style
this.style = 'crosshair' One of diamond, circle, square, x, plus, dash, filledDiamond, filledCircle, filledSquare
this.style = 'filledCircle' +true to try and synchronize tick spacing across multiple axes so that ticks and grid lines line up.
this.syncTicks = null Optional name for the overlay object.Padding between needle and inner edge of the ring when the needle is at the min or max gauge value.
this.needlePad = 6 Maximum thickness the needle.
this.needleThickness = null css color spec used for filled (area) plots that are filled to zero and the “useNegativeColors” option is true.
this.negativeColor how close or far (in pixels) the cursor must be from a point marker to detect the point.
this.neighborThreshold = 4 Options to set up a mock plot with a data loading indicator if no data is specified.
this.noDataIndicator = { show: false, indicator: 'Loading Data...', axes: { xaxis: { min: 0, max: 10, tickInterval: 2, show: true }, yaxis: { min: 0, max: 12, tickInterval: 3, show: true } } } Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of columns in the legend.
this.numberColumns = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null Maximum number of rows in the legend.
this.numberRows = null + + + +Desired number of ticks.
this.numberTicks
this.objects = [] Pixel offset at the given shadow angle of each shadow stroke from the last stroke.
this.offset = 1 + + + +color of the open price tick mark.
this.openColor = null Padding to extend the range above and below the data bounds.
this.pad = 1.2 padding between the donut and plot edges, legend, etc.
this.padding = 20 padding between the funnel and plot edges, legend, etc.
this.padding = {top: 20, right: 20, bottom: 20, left: 20} padding between the meterGauge and plot edges, auto calculated by default.
this.padding = null padding between the pie and plot edges, legend, etc.
this.padding = 20 Padding to extend the range above data bounds.
this.padMax = null Padding to extend the range below data bounds.
this.padMin = null True will stop needle just below/above the min/max values if data is below/above min/max, as if the meter is “pegged”.
this.pegNeedle = true “insideGrid” places legend inside the grid area of the plot.
this.placement = "insideGrid" Position of axis.
this.position = null Wether to draw the legend before the series or not.String to prepend to the tick label.
this.prefix = '' String to prepend to the tick label.
this.prefix = '' Point to pixel scaling factor, used for computing height of bounding box around a label.
this.pt2px = null + + + +Point to pixel scaling factor, used for computing height of bounding box around a label.
this.pt2px = null Renderer to use to draw the trend line.
this.renderer = new $.jqplot.LineRenderer() A class of a rendering engine that handles tick generation, scaling input data to pixel grid units and drawing the axis element.
this.renderer = $.jqplot.LinearAxisRenderer Instance of a renderer which will actually render the grid, see $.jqplot.CanvasGridRenderer.
this.renderer = $.jqplot.CanvasGridRenderer A class of a renderer which will draw the series, see $.jqplot.LineRenderer.
this.renderer = $.jqplot.LineRenderer A class for creating a DOM element for the title, see $.jqplot.DivTitleRenderer.
this.renderer = $.jqplot.DivTitleRenderer Options to pass to the line renderer.
this.rendererOptions = {marker:{show:false}} renderer specific options.
this.rendererOptions = {} Options to pass on to the renderer, see $.jqplot.CanvasGridRenderer.
this.rendererOptions = {} renderer specific options passed to the renderer.
this.rendererOptions = {} Options to pass on to the renderer.
this.rendererOptions = {} renderer specific options passed to the renderer.
this.rendererOptions = {} color of the outer ring, hub, and needle of the gauge.
this.ringColor = "#BBC6D0" pixel distance between rings, or multiple series in a donut plot.
this.ringMargin = null width of the ring around the gauge.
this.ringWidth = null css padding-top spec for the rows in the legend.
this.rowSpacing = '0.5em' ");if (browserV -Property Index+
T text, Title textAlign, Title textColor themes, $.jqplot. ThemeEngine thickness, $.jqplot. DonutRenderer tickColor, $.jqplot. MeterGaugeRenderer tickInterval, Axis tickLength, $.jqplot. OHLCRenderer tickMode, $.jqplot. MekkoAxisRenderer tickOptions, Axis tickPadding, $.jqplot. MeterGaugeRenderer tickRenderer ticks tickSpacing title, jqPlot tooltipAxes, $.jqplot. Highlighter tooltipAxisGroups, $.jqplot. Cursor tooltipFadeSpeed, $.jqplot. Highlighter tooltipFormatString tooltipLocation tooltipOffset type, $.jqplot. Trendline U upBodyColor, $.jqplot. OHLCRenderer useAxesFormatters useNegativeColors, Series useSeriesColor, Axis V varyBarColor, $.jqplot. BarRenderer varyBlockColors, $.jqplot. BlockRenderer varyBubbleColors, $.jqplot. BubbleRenderer W waterfall, $.jqplot. BarRenderer wickColor, $.jqplot. OHLCRenderer widthRatio, $.jqplot. FunnelRenderer X xaxis xmax, HorizontalLine xmin, HorizontalLine xoffset, Legend xpadding, $.jqplot. PointLabels Y y, HorizontalLine yaxis yoffset, Legend ypadding, $.jqplot. PointLabels yvalues, $.jqplot. Highlighter Z zoom, $.jqplot. Cursor - + - diff --git a/phpgwapi/js/jquery/jqplot/docs/index/Properties6.html b/phpgwapi/js/jquery/jqplot/docs/index/Properties6.html new file mode 100644 index 0000000000..3d5f6d821f --- /dev/null +++ b/phpgwapi/js/jquery/jqplot/docs/index/Properties6.html @@ -0,0 +1,58 @@ + + +Property Index-
S sectionMargin, $.jqplot. FunnelRenderer series, jqPlot seriesColors, jqPlot seriesDefaults, jqPlot seriesLabelIndex, $.jqplot. PointLabels seriesToggle shadow shadowAlpha shadowAngle shadowColor, Grid shadowDepth shadowOffset shadowRenderer, $.jqplot. MarkerRenderer shadowWidth, Grid shapeRenderer, $.jqplot. MarkerRenderer show showBorders, $.jqplot. MekkoRenderer showCursorLegend, $.jqplot. Cursor showDataLabels showGridline showHorizontalLine, $.jqplot. Cursor showLabel showLabels showLine, Series showLines, $.jqplot. LineRenderer showMark showMarker showMinorTicks, Axis showSwatch, Legend showTickLabels, $.jqplot. MeterGaugeRenderer showTickMarks, Axis showTicks showTooltip showTooltipDataPosition, $.jqplot. Cursor showTooltipGridPosition, $.jqplot. Cursor showTooltipOutsideZoom, $.jqplot. Cursor showTooltipPrecision, $.jqplot. CanvasOverlay showTooltipUnitPosition, $.jqplot. Cursor showVerticalLine, $.jqplot. Cursor size sizeAdjust, $.jqplot. Highlighter sliceMargin smooth, $.jqplot. LineRenderer sortData, jqPlot sortMergedLabels, $.jqplot. CategoryAxisRenderer stackedValue, $.jqplot. PointLabels stackSeries, jqPlot start, Line startAngle stop, Line strokeRect, $.jqplot. shapeRenderer strokeStyle, $.jqplot. shapeRenderer style syncTicks, Axis text of the title;
this.text = text css text-align spec for the text.
this.textAlign css spec for the color attribute.
this.textColor css spec for the color attribute.
this.textColor = '#666666' css spec for the color attribute.
this.textColor = '#666666' css color spec for the legend text.
this.textColor css color spec for the text.
this.textColor hash of themes managed by the theme engine.
this.themes = {} thickness of the donut, auto computed by default Overridden by if innerDiameter is specified.
this.thickness = null color of the tick marks around the gauge.
this.tickColor = "989898" number of units between ticks.
this.tickInterval length of the line in pixels indicating open and close price.
this.tickLength = 'auto' How to space the ticks on the axis.
this.tickMode Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options.
this.tickOptions = {} padding of the tick marks to the outer ring and the tick labels to marks.
this.tickPadding = null A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.
this.tickRenderer = $.jqplot.AxisTickRenderer Array of tick values.
this.ticks = [] 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis.
this.ticks = [] Degrees between ticks.
this.tickSpacing = 30 Approximate pixel spacing between ticks on graph.
this.tickSpacing = 75 Title object.
this.title = new Title() Which axes to display in tooltip, ‘x’, ‘y’ or ‘both’, ‘xy’ or ‘yx’ ‘both’ and ‘xy’ are equivalent, ‘yx’ reverses order of labels.
this.tooltipAxes = 'both' Show position for the specified axes.
this.tooltipAxisGroups = [] ‘slow’, ‘def’, ‘fast’, or number of milliseconds.
this.tooltipFadeSpeed = "fast" sprintf format string for the tooltip.
this.tooltipFormatString = '%.4P, %.4P' sprintf format string for the tooltip.
this.tooltipFormatString = '%.5P' Where to position tooltip.
this.tooltipLocation = 'se' Where to position tooltip, ‘n’, ‘ne’, ‘e’, ‘se’, ‘s’, ‘sw’, ‘w’, ‘nw’
this.tooltipLocation = 'nw' Pixel offset of tooltip from the grid boudaries or cursor center.
this.tooltipOffset = 6 Pixel offset of tooltip from the highlight.
this.tooltipOffset = 2 - - - -Either ‘exponential’, ‘exp’, or ‘linear’.
this.type = 'linear' Color of candlestick body of an “up” day.
this.upBodyColor = null Use the x and y axes formatters to format the text in the tooltip.
this.useAxesFormatters = true Use the x and y axes formatters to format the text in the tooltip.
this.useAxesFormatters = true true to color negative values differently in filled and bar charts.
this.useNegativeColors = true - - - -Use the color of the first series associated with this axis for the tick marks and line bordering this axis.
this.useSeriesColor = false true to color each bar of a series separately rather than have every bar of a given series the same color.
this.varyBarColor = false true to vary the color of each block in this series according to the seriesColors array.
this.varyBlockColors = false - - - -True to vary the color of each bubble in this series according to the seriesColors array.
this.varyBubbleColors = true true to enable waterfall plot.
this.waterfall = false color of the hi-lo line thorugh the candlestick body.
this.wickColor = null - - - -The ratio of the width of the top of the funnel to the bottom.
this.widthRatio = 0.2 X axis to use for positioning/scaling the line.X axis to use for positioning/scaling the line.X axis to use for positioning/scaling the line.X axis to use for positioning/scaling the line.which x axis to use with this series, either ‘xaxis’ or ‘x2axis’.
this.xaxis = 'xaxis' X axis to use for positioning/scaling the line.x value for the end of the line, null to scale to axis max.x value for the start of the line, null to scale to axis min.DEPRECATED.
this.xoffset = 0 - - - -horizontal padding in pixels between point and label
this.xpadding = 6 y value to position the lineY axis to use for positioning/scaling the line.Y axis to use for positioning/scaling the line.Y axis to use for positioning/scaling the line.Y axis to use for positioning/scaling the line.which y axis to use with this series, either ‘yaxis’ or ‘y2axis’.
this.yaxis = 'yaxis' Y axis to use for positioning/scaling the line.
yaxis: 'yaxis', x: null, ymin: null, ymax: null, yOffset: '6px', // number or string. Number interpreted as units, string as pixels. yminOffset: null, ymaxOffset: null } DEPRECATED.
this.yoffset = 0 vertical padding in pixels between point and label
this.ypadding = 6 - - - -Number of y values to expect in the data point array.
this.yvalues = 1 +Enable plot zooming.
this.zoom = false spacing between funnel sections in pixels.
this.sectionMargin = 6 Array of series object options.
this.series = [] Ann array of CSS color specifications that will be applied, in order, to the series in the plot.
this.seriesColors = $.jqplot.config.defaultColors default options that will be applied to all series.
seriesDefaults: {}, series:[] } array index for location of labels within data point arrays.
this.seriesLabelIndex = null false to not enable series on/off toggling on the legend.
this.seriesToggle = 'normal' wether or not to draw a shadow on the linewether or not to draw a shadow on the line
this.shadow = true true or false, wether or not to show the shadow.
this.shadow = true wether to show a shadow behind the grid.
this.shadow = true transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.08 Alpha channel transparency of shadow.transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 Alpha channel transparency of shadow.
this.shadowAlpha = '0.07' transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 transparency of the shadow (0 = transparent, 1 = opaque)
this.shadowAlpha = 0.07 Alpha transparency of the shadow.
this.shadowAlpha = 0.07 Alpha channel transparency of shadow.
this.shadowAlpha = '0.07' Alpha channel transparency of shadow.
this.shadowAlpha = '0.1' Shadow angle in degreesShadow angle in degrees
this.shadowAngle = 45 Angle of the shadow on the trend line.
this.shadowAngle = 45 shadow angle in degrees
this.shadowAngle = 45 Shadow angle in degrees
this.shadowAngle = 45 an optional css color spec for the shadow in ‘rgba(n, n, n, n)’ form
this.shadowColor = null number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 Number of times shadow is stroked, each stroke offset shadowOffset from the last.number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 4 number of strokes to apply to the shadow, each stroke offset shadowOffset from the last.
this.shadowDepth = 5 number of strokes to make of the shadow.
this.shadowDepth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 Number of times shadow is stroked, each stroke offset shadowOffset from the last.
this.shadowDepth = 3 offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 Shadow offset from line in pixelsoffset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 offset of the shadow from the area and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 Shadow offset from line in pixels
this.shadowOffset = 1 offset of the shadow from the gauge ring and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 offset of the shadow from the slice and offset of each succesive stroke of the shadow from the last.
this.shadowOffset = 2 pixel offset for each stroke of the shadow.
this.shadowOffset = 1.0 Offset of each shadow stroke from the border in pixels
this.shadowOffset = 1.5 Shadow offset from line in pixels
this.shadowOffset = 1.25 Renderer that will draws the shadows on the marker.
this.shadowRenderer = new $.jqplot.ShadowRenderer() width of the stoke for the shadow
this.shadowWidth = 3 Renderer that will draw the marker.
this.shapeRenderer = new $.jqplot.ShapeRenderer() wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true wether or not to show the tick (mark and label).
this.show = true true to show (draw), false to not draw.wether to show the cursor or not.
this.show = $.jqplot.config.enablePlugins true to show the highlight.
this.show = $.jqplot.config.enablePlugins true to show the bands.wether or not to show the marker.
this.show = true show the labels or not.
this.show = $.jqplot.config.enablePlugins Wether or not to show the trend line.
this.show = $.jqplot.config.enablePlugins Wether to display the axis on the graph.
this.show = false Wether to display the legend on the graph.
this.show = false wether or not to draw the series.
this.show = true wether or not to show the title
this.show = true True to draw borders lines between areas on the chart.
this.showBorders = true Replace the plot legend with an enhanced legend displaying intersection information.
this.showCursorLegend = false true to show data labels on slices.
this.showDataLabels = false true to show data labels on slices.
this.showDataLabels = false true to show data labels on slices.
this.showDataLabels = false wether or not to draw the gridline on the grid at this tick.
this.showGridline = true wether or not to draw the gridline on the grid at this tick.
this.showGridline = true draw a horizontal line across the plot which follows the cursor.
this.showHorizontalLine = false wether or not to show the label.
this.showLabel = true wether or not to show the label.
this.showLabel = true wether or not to show the label.
this.showLabel = true true to show the axis label.
this.showLabel = true true to show label for this series in the legend.
this.showLabel = true True to show labels on bubbles (if any), false to not show.
this.showLabels = true true to show the label text on the legend.
this.showLabels = true wether to actually draw the line or not.
this.showLine = true True to show lines at top and bottom of bands [default: false].wether or not to show the mark on the axis.
this.showMark = true wether or not to show the mark on the axis.
this.showMark = true true to show the marker
this.showMarker = true wether or not to show the markers at the data points.
this.showMarker = true Wether or not to show minor ticks.
this.showMinorTicks = true true to show the color swatches on the legend.
this.showSwatches = true true to show tick labels next to ticks.
this.showTickLabels = true Wether to show the tick marks (line crossing grid) or not.
this.showTickMarks = true true to show ticks around gauge.
this.showTicks = true Wether to show the ticks (both marks and labels) or not.
this.showTicks = true Show a tooltip with data point values.show a cursor position tooltip.
this.showTooltip = true Show a tooltip with data point values.
this.showTooltip = true Used with showVerticalLine to show intersecting data points in the tooltip.
this.showTooltipDataPosition = false show the grid pixel coordinates of the mouse.
this.showTooltipGridPosition = false True will keep updating the tooltip when zooming of the grid.
this.showTooltipOutsideZoom = false Controls how close to line cursor must be to show tooltip.show the unit (data) coordinates of the mouse.
this.showTooltipUnitPosition = true draw a vertical line across the plot which follows the cursor.
this.showVerticalLine = false Length of the tick beyond the grid in pixels.
this.size = 4 Size of the marker (diameter or circle, length of edge of square, etc.)
this.size = 9.0 Pixels to add to the overall size of the highlight.
this.sizeAdjust = 5 angular spacing between donut slices in degrees.
this.sliceMargin = 0 angular spacing between pie slices in degrees.
this.sliceMargin = 0 True to draw a smoothed (interpolated) line through the data points with automatically computed number of smoothing points.
this.renderer.smooth = false false to not sort the data passed in by the user.
this.sortData = true True to sort tick labels when labels are created by merging x axis values from multiple series.
this.sortMergedLabels = false true to display value as stacked in a stacked plot.
this.stackedValue = false true or false, creates a stack or “mountain” plot.
this.stackSeries = false [x, y] coordinates for the start of the line.Angle to start drawing donut in degrees.
this.startAngle = 0 Angle to start drawing pie in degrees.
this.startAngle = 0 [x, y] coordinates for the end of the line.
stop: [] } true to draw shape as a stroked rectangle.
this.strokeRect = false css color spec for the stoke style
this.strokeStyle = '#999999' CSS spec for cursor style
this.style = 'crosshair' One of diamond, circle, square, x, plus, dash, filledDiamond, filledCircle, filledSquare
this.style = 'filledCircle' true to try and synchronize tick spacing across multiple axes so that ticks and grid lines line up.
this.syncTicks = null Property Index + + + + + + + + + ++ + + + + + + + + + + + \ No newline at end of file diff --git a/phpgwapi/js/jquery/jqplot/docs/search/ClassesSymbols.html b/phpgwapi/js/jquery/jqplot/docs/search/ClassesSymbols.html index 33176d7b96..53396614d8 100644 --- a/phpgwapi/js/jquery/jqplot/docs/search/ClassesSymbols.html +++ b/phpgwapi/js/jquery/jqplot/docs/search/ClassesSymbols.html @@ -11,7 +11,7 @@ if (browserType) {document.write("Property Index+ +
T text, Title textAlign, Title textColor themes, $.jqplot. ThemeEngine thickness, $.jqplot. DonutRenderer tickColor, $.jqplot. MeterGaugeRenderer tickInset tickInterval, Axis tickLength, $.jqplot. OHLCRenderer tickMode, $.jqplot. MekkoAxisRenderer tickOptions, Axis tickPadding, $.jqplot. MeterGaugeRenderer tickRenderer ticks tickSpacing title, jqPlot tooltipAxes, $.jqplot. Highlighter tooltipAxisGroups, $.jqplot. Cursor tooltipFadeSpeed tooltipFormatString tooltipLocation tooltipOffset transposedData, $.jqplot. BarRenderer type, $.jqplot. Trendline U upBodyColor, $.jqplot. OHLCRenderer useAxesFormatters useNegativeColors, Series useSeriesColor, Axis V varyBarColor, $.jqplot. BarRenderer varyBlockColors, $.jqplot. BlockRenderer varyBubbleColors, $.jqplot. BubbleRenderer W waterfall, $.jqplot. BarRenderer wickColor, $.jqplot. OHLCRenderer widthRatio, $.jqplot. FunnelRenderer X xaxis xmax, HorizontalLine xmin, HorizontalLine xoffset, Legend xpadding, $.jqplot. PointLabels Y y, HorizontalLine yaxis yoffset, Legend ypadding, $.jqplot. PointLabels yvalues, $.jqplot. Highlighter Z zoom, $.jqplot. Cursor text of the title;
this.text = text css text-align spec for the text.
this.textAlign css spec for the color attribute.
this.textColor css spec for the color attribute.
this.textColor = '#666666' css spec for the color attribute.
this.textColor = '#666666' css color spec for the legend text.
this.textColor css color spec for the text.
this.textColor hash of themes managed by the theme engine.
this.themes = {} thickness of the donut, auto computed by default Overridden by if innerDiameter is specified.
this.thickness = null color of the tick marks around the gauge.
this.tickColor = "989898" Controls the amount to inset the first and last ticks from the edges of the grid, in multiples of the tick interval.
this.tickInset = 0 Controls the amount to inset the first and last ticks from the edges of the grid, in multiples of the tick interval.
this.tickInset = 0 number of units between ticks.
this.tickInterval length of the line in pixels indicating open and close price.
this.tickLength = 'auto' How to space the ticks on the axis.
this.tickMode Options that will be passed to the tickRenderer, see $.jqplot.AxisTickRenderer options.
this.tickOptions = {} padding of the tick marks to the outer ring and the tick labels to marks.
this.tickPadding = null A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.A class of a rendering engine for creating the ticks labels displayed on the plot, See $.jqplot.AxisTickRenderer.
this.tickRenderer = $.jqplot.AxisTickRenderer Array of tick values.
this.ticks = [] 1D [val, val, ...] or 2D [[val, label], [val, label], ...] array of ticks for the axis.
this.ticks = [] Degrees between ticks.
this.tickSpacing = 30 Approximate pixel spacing between ticks on graph.
this.tickSpacing = 75 Title object.
this.title = new Title() Which axes to display in tooltip, ‘x’, ‘y’ or ‘both’, ‘xy’ or ‘yx’ ‘both’ and ‘xy’ are equivalent, ‘yx’ reverses order of labels.
this.tooltipAxes = 'both' Show position for the specified axes.
this.tooltipAxisGroups = [] ‘slow’, ‘def’, ‘fast’, or number of milliseconds.‘slow’, ‘def’, ‘fast’, or number of milliseconds.
this.tooltipFadeSpeed = "fast" Format string passed the x and y values of the cursor on the line.
tooltipFormatString: '%d, %d' } sprintf format string for the tooltip.
this.tooltipFormatString = '%.4P, %.4P' sprintf format string for the tooltip.
this.tooltipFormatString = '%.5P' Where to position tooltip, ‘n’, ‘ne’, ‘e’, ‘se’, ‘s’, ‘sw’, ‘w’, ‘nw’Where to position tooltip.
this.tooltipLocation = 'se' Where to position tooltip, ‘n’, ‘ne’, ‘e’, ‘se’, ‘s’, ‘sw’, ‘w’, ‘nw’
this.tooltipLocation = 'nw' Pixel offset of tooltip from the highlight.Pixel offset of tooltip from the grid boudaries or cursor center.
this.tooltipOffset = 6 Pixel offset of tooltip from the highlight.
this.tooltipOffset = 2 NOT IMPLEMENTED YET.
this.transposedData = true + + + +Either ‘exponential’, ‘exp’, or ‘linear’.
this.type = 'linear' Color of candlestick body of an “up” day.
this.upBodyColor = null Use the x and y axes formatters to format the text in the tooltip.
this.useAxesFormatters = true Use the x and y axes formatters to format the text in the tooltip.
this.useAxesFormatters = true true to color negative values differently in filled and bar charts.
this.useNegativeColors = true + + + +Use the color of the first series associated with this axis for the tick marks and line bordering this axis.
this.useSeriesColor = false true to color each bar of a series separately rather than have every bar of a given series the same color.
this.varyBarColor = false true to vary the color of each block in this series according to the seriesColors array.
this.varyBlockColors = false + + + +True to vary the color of each bubble in this series according to the seriesColors array.
this.varyBubbleColors = true true to enable waterfall plot.
this.waterfall = false color of the hi-lo line thorugh the candlestick body.
this.wickColor = null + + + +The ratio of the width of the top of the funnel to the bottom.
this.widthRatio = 0.2 X axis to use for positioning/scaling the line.which x axis to use with this series, either ‘xaxis’ or ‘x2axis’.
this.xaxis = 'xaxis' x value for the end of the line, null to scale to axis max.x value for the start of the line, null to scale to axis min.DEPRECATED.
this.xoffset = 0 + + + +horizontal padding in pixels between point and label
this.xpadding = 6 y value to position the lineY axis to use for positioning/scaling the line.which y axis to use with this series, either ‘yaxis’ or ‘y2axis’.
this.yaxis = 'yaxis' DEPRECATED.
this.yoffset = 0 vertical padding in pixels between point and label
this.ypadding = 6 + + + +Number of y values to expect in the data point array.
this.yvalues = 1 + +Enable plot zooming.
this.zoom = false ");if (browserV -Loading...Searching...No Matches- + - + - - - - - - - - + + + + + + + + - + + + + + - + +++Area charts support highlighting and mouse events by default. The options and handlers and callbacks are essentially the same as with bar, pie, donut and funnel charts. One notable exception for area charts is that no data point index will be provided to the callback and the entire data set for the highlighted area will be returned. This is because the area is not associated with one particular data point, but with the entire data set of the series.
@@ -104,5 +108,7 @@ $(document).ready(function(){You Clicked: Nothing yet- + +