Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-06-22 | jsrrdgraph: Fix TICK | Manuel Luis Sanmartín Rozada | 1 | -0/+2 | |
2015-06-22 | jsrrdgraph: Fix tabs and spaces | Manuel Luis Sanmartín Rozada | 1 | -4/+4 | |
2015-06-22 | jsrrdgraph: Add support for dashes | Manuel Luis Sanmartín Rozada | 1 | -13/+45 | |
2014-11-14 | jsrrdgraph: Set original step when change time interval. | Manuel Luis Sanmartín Rozada | 1 | -4/+6 | |
2014-11-14 | jsrrdgraph: Fix undefined variables | Peter Wu | 1 | -15/+13 | |
Fixed various typos in references to variables. Also throw an exception if a variable is not found in GPRINT for debugging purposes and move some variable declarations. | |||||
2014-08-02 | jsrrdgraph: Fix error functions. Error prototype. | Manuel Luis Sanmartín Rozada | 1 | -3/+4 | |
2014-08-02 | jsrrdgraph: Fix reduce in DEF | Manuel Luis Sanmartín Rozada | 1 | -2/+2 | |
2014-08-02 | jsrrdgraph: Add fallback fonts. | Manuel Luis Sanmartín Rozada | 1 | -1/+1 | |
2014-08-02 | jsrrdgraph: Fixed jshint warnings/errors | Peter Wu | 1 | -34/+31 | |
Many fall in the category missing semicolon, but there are legitimate bugs (like throwing an error with an undefined variable, using isInfinite instead of !isFinite or fabs instead of Math.abs). At some places, I moved the variable declarations to avoid duplicate definition warnings. Redundant breaks have been removed (after return / throw). Global variables were implicitly defined in RrdDataFile (which caught my attention) and Base64, these have been made local. Also fixed some whitespace errors. Yay, the consistency. Not all (style) issues are fixed. | |||||
2014-07-25 | jsrrdgraph: Fix ident. Thanks to Poil | Manuel Luis Sanmartín Rozada | 1 | -3/+3 | |
2014-07-25 | jsrrdgraph: Check when this.gdes[i].legend is null | Manuel Luis Sanmartín Rozada | 1 | -2/+7 | |
2014-07-25 | jsrrdgraph: Fix textalign name typo. Thanks to Poil | Manuel Luis Sanmartín Rozada | 1 | -2/+2 | |
2014-07-05 | jsrrdgraph: RrdGraph.js: make HRULE support reference to variable | Pim van den Berg | 1 | -1/+3 | |
The value of HRULE could be a reference to for example a VDEF variable. Closes #85 | |||||
2014-06-28 | jsrrdgraph: Fix graph width to look like rrdtool. | Manuel Luis Sanmartín Rozada | 1 | -2/+1 | |
2014-06-28 | jsrrdgraph: Fix errors in second axis. | Manuel Luis Sanmartín Rozada | 1 | -2/+2 | |
2014-01-12 | jsrrdgraph: Change alter for thow | Manuel Luis Sanmartín Rozada | 1 | -4/+2 | |
2014-01-12 | jsrrdgraph: RrdGraph.js: Add RrdGraph.prototype.graph_paint_async method | Vincent Brillault | 1 | -0/+93 | |
2014-01-12 | jsrrdgraph: RrdGraph.js: splitting RrdGraph.prototype.graph_paint into init, ↵ | Vincent Brillault | 1 | -3/+13 | |
fetch and draw | |||||
2014-01-12 | jsrrdgraph: RrdGraph.js: fix some indentation | Vincent Brillault | 1 | -4/+4 | |
2013-05-18 | jsrrdgraph: RrdGraph.js: gprint: fix check for undefined format in case of vdef | Pim van den Berg | 1 | -1/+1 | |
The GPRINT of a VDEF doesn't have a CF. For example: > "GPRINT:avg:LAST:%5.1lf%s Last" > "GPRINT:tot:%5.1lf%s Total\l" The format will be passed via the cf variable, so format is not defined. But it didn't show up in the legend. Firebug showed variable format isn't undefined, but an empty string in case of VDEF. So just check for falsy. | |||||
2013-05-13 | jsrrdgraph: RrdGraph.js: fix undefined 2nd argument of RrdVdef function | Pim van den Berg | 1 | -1/+1 | |
This fixes this error: > TypeError: Cannot call method 'indexOf' of undefined at new RrdVdef | |||||
2013-05-10 | import js directory from jsrrdgraph for client side graph rendering | Pim van den Berg | 1 | -0/+2914 | |
Source: https://github.com/manuelluis/jsrrdgraph@276b880 |