Signed-off-by: Chris Mason <chris.mason@fusionio.com>
static int opt_graph_height = 0;
static int columns = 1;
-static int num_xticks = 7;
+static int num_xticks = 9;
static int num_yticks = 4;
static double min_time = 0;
* We don't want last two ticks to be too close together so subtract
* 20% of the step from the interval
*/
- num_ticks = (double)(last - first - step / 5) / step + 1;
+ num_ticks = (double)(last - first - step) / step + 1;
pixels_per_tick = graph_width * step / (double)(last - first);
for (i = 0; i < num_ticks; i++) {