- 03 Jul, 2013 1 commit
-
-
Patrik Ragnarsson authored
GitHub doesn't render ftp links for some reason ([security?][1]). [1]: https://github.com/mojombo/jekyll/issues/373#issuecomment-15025728
-
- 31 May, 2013 2 commits
-
-
David Schnur authored
-
David Schnur authored
Add table of contents
-
- 30 May, 2013 2 commits
-
-
Brian Peiris authored
-
Brian Peiris authored
The reference document is quite large; a table of contents would help readers navigate and find topics. (TOC was generated via [DocToc](http://doctoc.herokuapp.com/))
-
- 29 May, 2013 2 commits
-
-
David Schnur authored
-
David Schnur authored
Lots of people ask about implementing tooltips; hopefully enabling it by default will help them find it more easily.
-
- 28 May, 2013 1 commit
-
-
David Schnur authored
-
- 27 May, 2013 4 commits
-
-
David Schnur authored
These changes were used to test the axis innermost property fix, and should not have been committed.
-
David Schnur authored
-
David Schnur authored
An axis is innermost when it's first among those not just in its direction, but also on its side, i.e. left/right, of the plot. So the inArray check should be against the samePosition list, not all. Resolves #1056.
-
David Schnur authored
It doesn't make sense to calculate the innermost property only when no tickLength has been provided; the two have little to do with each other.
-
- 23 May, 2013 1 commit
-
-
David Schnur authored
-
- 22 May, 2013 3 commits
-
-
David Schnur authored
-
David Schnur authored
-
David Schnur authored
Resolves #1032. Previously it was impossible to draw the same text, with the same style, in two different locations, because the second would end up using the first's cache entry, which only ended up moving the element to a new position. Now each cache entry holds a list of positions at which the text appears, creating clones of the original element for each position beyond the first.
-
- 08 May, 2013 2 commits
-
-
David Schnur authored
Resolves #1030. The performance impact should be low, and is the correct thing to do in just about all cases where a plot is being redrawn.
-
David Schnur authored
Resolves #1033.
-
- 06 May, 2013 2 commits
-
-
David Schnur authored
Removed executable permissions from jquery.flot.selection.js
-
Marcelo Jorge Vieira authored
-
- 05 May, 2013 3 commits
-
-
David Schnur authored
Flot 0.7 calculated x-axis label dimensions by assigning each label a fixed width, then measuring the height as determined by the browser. A side-effect of this technique is that x-axis label divs received a fixed width. The rewrite of the text system in 0.8 accidentally removed this feature; this patch restores it.
-
David Schnur authored
The optional width parameter establishes a maximum width for the text's bounding box, forcing it to wrap when it reaches that size.
-
David Schnur authored
-
- 28 Apr, 2013 4 commits
-
-
David Schnur authored
Regression on pie plugin in the data format allowed
-
Nicolas Morel authored
-
David Schnur authored
Patch for colors array, issue #1031
-
goorpy authored
Per request from dnschnur (https://github.com/flot/flot/pull/1034#issuecomment-17119203), I have: - Added a comment explaining the purpose of the new check/override - Changed the structure to match preferred standard structure
-
- 27 Apr, 2013 2 commits
-
-
David Schnur authored
Add links between API.md and README.md
-
David Schnur authored
Remove $.isNumeric() for compat with jQuery < 1.7. Fixes #1026
-
- 26 Apr, 2013 2 commits
-
-
Brian Peiris authored
-
Brian Peiris authored
-
- 24 Apr, 2013 1 commit
-
-
goorpy authored
(Realted to flot issue #1031: https://github.com/flot/flot/issues/1031) Currently, if the user declares a custom color palette with less than 5 colors (say, n), $.extend(true, options, opts) only modifies the first n colors of the default palette and leaves the last 5-n in place. When the number of series is >n, colors are used that are not part of user-defined palette, contrary to description of colors array in API. This line overrides the extended colors array and replaces it with exactly the user-defined colors array, when present. Afterwards, the user color palette is respected by the auto tinting/shading system for when there are more series than colors.
-
- 23 Apr, 2013 1 commit
-
-
Lee Willis authored
-
- 21 Apr, 2013 1 commit
-
-
David Schnur authored
-
- 20 Apr, 2013 2 commits
-
-
David Schnur authored
Remove some incorrect else-if logic in time plugin.
-
David Schnur authored
Avoid propagating mouse wheel events when they're first caught by the navigate plugin.
-
- 19 Apr, 2013 2 commits
-
-
Daniel Shapiro authored
Looks like this was mistakenly introduced in a whitespace/bracket cleanup.
-
vird authored
BUGFIX navigation wheel scrolls page.
-
- 13 Apr, 2013 2 commits
-
-
David Schnur authored
-
David Schnur authored
Resolves #1016. Initialization consists of adding the tickGenerator and tickFormatter functions to each axis. This should happen exactly once per plot, but since the code was previously using the processDatapoints hook, it was called once per series. When no series were present, it ran zero times, triggering an exception when we later checked for the existence of the functions. Binding to the processOptions hook ensures that the axes are always modified once, regardless of how many series there are. The axes are already initialized by the point the hook runs, so this change shouldn't cause any problems.
-