1. 22 Jul, 2013 1 commit
    • David Schnur's avatar
      Fix highlights for right-aligned bars. · 2ce1139c
      David Schnur authored
      Support for right-aligned bars was never added to the hover or highlight
      code; only the actual bar drawing. We need to replicate that in the
      other two places as well.
      
      Resolves #1093.
      2ce1139c
  2. 19 Jul, 2013 4 commits
  3. 03 Jul, 2013 4 commits
  4. 31 May, 2013 2 commits
  5. 30 May, 2013 2 commits
  6. 29 May, 2013 2 commits
  7. 28 May, 2013 1 commit
  8. 27 May, 2013 4 commits
  9. 23 May, 2013 1 commit
  10. 22 May, 2013 3 commits
  11. 08 May, 2013 2 commits
  12. 06 May, 2013 2 commits
  13. 05 May, 2013 3 commits
  14. 28 Apr, 2013 4 commits
  15. 27 Apr, 2013 2 commits
  16. 26 Apr, 2013 2 commits
  17. 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