0
votes
0answers
64 views

jQuery Datetime select with endtime

My jquery is really bad and just trying to get a project off the ground. I have lots of data for graph that spans weeks and months and should be able to grow more. I want to allow the user to be able ...
1
vote
3answers
117 views

Clean and Visually-Appealing jQuery/JavaScript Graphing API [closed]

I've been doing some research into various graphing APIs for use in a social media dashboard that I'm building, and I'm having trouble finding one that is both highly configurable and "clean" looking. ...
0
votes
1answer
142 views

Flot not respecting 12 hour time formatting

I'm using Flot for graphing and I'm having trouble getting it to report 12 hour time, instead of 24 hour time. I'm using this code (which works fine otherwise) $(function () { ...
0
votes
1answer
114 views

Unable to properly update Flot graph on ajax response

I have a graph that is properly generated when the page loads. That code is: <body> <div id="placeholder" style="width:800px;height:400px;"></div> <script ...
1
vote
2answers
1k views

How can I add a new, single point to a flot graph?

I'm working with data set where observations are sequentially obtained. New data points need to be placed on a flot graph, one at a time. This is not a case where (unlike this previous question) I can ...
1
vote
1answer
201 views

Display a dataset of points, and a dataset of lines, on a single flot graph?

How can I display two data series in the same flot graph, when one series is a set of points, and one is a line? I've seen examples of line series like this, but the complicating factor is that I'd ...
0
votes
1answer
2k views

Add or highlight a single points on a jQuery flot graph?

I've already drawn a flot graph using some data: var plot = $.plot($("#placeholder"), [{ data: data, }], { series: { points: { show: true ...
0
votes
1answer
114 views

Graphing this with Jquery.Flot or similar

I'm trying to draw this chart with Flot. There's a flat line from 0 to 10 (at y=1). and points at x=2, x=3, x=7 all also at y=1. ________O____O_______________O_____________ 0 1 2 3 4 5 ...
3
votes
2answers
2k views

Updating dataSet with flot resets data

I've got a flot chart that I want to dynamically update via AJAX. I can render the chart initially, but whenever I try to update the dataSet and redraw the chart, it resets all my data points: ...
10
votes
1answer
8k views

jQuery Flot data/axis labels on top of graph

Is there a way to overlay the x-axis and y-axis numeric labels onto a jQuery Flot graph. So, I want the labels to not be outside, next to the graph, but on top of the graph itself. The following ...
10
votes
6answers
18k views

Any examples of Flot with floating tooltips?

I am currently working on a Flot graph, the API which seems pretty powerful overall, although examples of advanced use are not widely documented. The API suggests there are ways to set hoverable on ...