Most voted "flot" questions
9 questions
Sort by count of
-
4
votes1
answer104
viewsHow to generate a graph with a curve similar to "sine" in jquery Flot?
Friends, I’m using Flot for a little ECG simulation (electrocardiogram), and I stumbled across a problem, which I think is over mathematics than of programming... So I’m sorry if I’m explaining bad.…
-
3
votes1
answer83
viewsFlot Charts, default x-axis from two days ago until now (last 48 hours)
I have an app that features a chart whose dados from the database, where the date columns store a Unix timestamp, the data is received as a JSON. This graph works well but I would like the X axis to…
-
2
votes1
answer521
viewsVertical bars valued with Flot.js
Hello. I use the Flot.js to plot a graph "Stacked Bars" example but I wanted to insert the bar values "inside" the bar, and not simply in the tooltip. Someone knows how to do?…
-
1
votes2
answers180
viewsHow to produce JSON in the format that Flot expects?
Doubt on how to serialize to return this JSON. I’m using the Flot library (http://www.flotcharts.org/) to display a chart. I can generate the charts. In my view I’m wearing it like this : $.ajax({…
-
1
votes1
answer89
viewsUse different symbols for dots
I’m using the plugin float Charts to generate line graphics. Until then I have this chart: As a configuration of plugin, I am informing you that this line must have a symbol of the kind circle But I…
-
1
votes1
answer206
viewsHow to use "time" transitions in a Canvas animation
Giving sequence to the post "How to generate a Sine curve", where I made some adjustments: I am still working on this ECG simulator (electrocardiogram), and now I need to "manipulate" the times…
-
1
votes0
answers53
viewsHow to use Flot Chart on a web server?
Good I have an Apache web server running on a pi Raspberry. This web server has a view_action.php file that does include from another Graph.htmlpage. This Graph.html is a copy of an . html code from…
-
0
votes1
answer39
viewsLabel Indefinite Graphic with Flot and PHP
Using Flot to generate the graphics in pie format, the graph is generated with the values in percentage, but the Labels are displayed with 'Undefined'. $(document).ready(function () { var chartError…
-
0
votes1
answer90
viewsSet time (minute:second) on Flot chart
I’m trying to put on the x-axis the seconds, because the update is every 3 seconds. I have found that to define the interval, I just put this data xaxis : { minTickSize : [ 3, "second" ], min : 0,…