tags:

views:

13

answers:

2

Hi

I'm trying to achieve the following in Flot and was wondering if an experienced user could offer some insight.

  1. I'd like to replace various plot points with a graphic (not the entire series).

  2. I'd like to remove the grid markings.

Any help appreciated

+1  A: 
  1. Sounds very tricky unless you want to hack around with Flot itself / create a plugin

  2. Grid lines can be configured using the following option:

    grid: { show: false }

Fiona Holder
Thanks for the reply. I want to retain the border but remove the grid lines within it. show: false removes the border and x and y values.
Ah, I see. Bit hacky, but couldnt you set the color of the grid to be the same as the color of the background, and then give the axis and tick marks a different color?
Fiona Holder