1. 03 Jul, 2013 1 commit
  2. 31 May, 2013 2 commits
  3. 30 May, 2013 2 commits
  4. 29 May, 2013 2 commits
  5. 28 May, 2013 1 commit
  6. 27 May, 2013 4 commits
  7. 23 May, 2013 1 commit
  8. 22 May, 2013 3 commits
  9. 08 May, 2013 2 commits
  10. 06 May, 2013 2 commits
  11. 05 May, 2013 3 commits
  12. 28 Apr, 2013 4 commits
  13. 27 Apr, 2013 2 commits
  14. 26 Apr, 2013 2 commits
  15. 24 Apr, 2013 1 commit
    • goorpy's avatar
      Override colors array after extend in parseOptions · fccc8a6e
      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.
      fccc8a6e
  16. 23 Apr, 2013 1 commit
  17. 21 Apr, 2013 1 commit
  18. 20 Apr, 2013 2 commits
  19. 19 Apr, 2013 2 commits
  20. 13 Apr, 2013 2 commits
    • David Schnur's avatar
      Updated credits for #1016 exception fix. · a2503c2e
      David Schnur authored
      a2503c2e
    • David Schnur's avatar
      Initialize time-mode support in processOptions. · ec7322e4
      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.
      ec7322e4