Flot is a pure Javascript plotting library for jQuery. It produces graphical plots of arbitrary datasets on-the-fly client-side.

learn more… | top users | synonyms

0
votes
0answers
27 views

passing jQuery object references not working when called by ajax

I have spent a day working on a script that should have been relatively simple to implement. It however was not. Essentially what I wanted to do was as follows. Have 5 buttons which onclick load a ...
1
vote
1answer
24 views

Flot axis labels position in canvas

I am building a Rails 3.2.11 app with Flot 0.8.1. I want to render my Flot charts in PDFs using Prawn. (I will Ajax the image data to the server using the .getCanvas and .toDataURL methods.) My Flot ...
0
votes
1answer
31 views

How to use Flot canvas plugin

I am building a Rails 3.2.11 app with Flot. I want to render my Flot charts in PDFs using Prawn. My Flot charts render in the browser fine. I can create Prawn PDFs fine (though not with chart images ...
0
votes
0answers
15 views

Flot touch on iPhone displays white screen when 3+ data series are added - how to fix?

I'm running into a weird issue when working with flot-touch example on iPhone with retina display. Everything works fine for 1 or 2 data series, but when I add the 3rd, I get white screen with legend ...
0
votes
0answers
10 views

Flot graphing changing tick mark time labels?

I'm having trouble changing the x-axis tick marks / timestamps to show only hours and minutes, and to remove seconds. i tried changing mode to 'time' and using 'timeformat'; that didn't work. i want ...
1
vote
1answer
20 views

flot date bar chart alignment askew

I am trying to make a chart that shows the number of search results my app pulls in for each day using flot. My code (BTW it uses underscore.js): flotDataSet = _.countBy(resultSet, function(file) { ...
0
votes
2answers
32 views

Is there an iPhone example project that uses Flot library for graphs? [closed]

A couple years ago I was using Flot for my Android apps and am very satisfied with results. Now I'm trying to integrate Flot into my iPhone project and found this implementation: flot touch. Here's ...
0
votes
1answer
28 views

How to display bars with jquery flot orderBars with float values in xaxis?

I use the code provided at pikemere > A Customised Bar Chart. The example works fine. I want to use in xaxis float values instead of timestamp like in the example. I try with the following code, but ...
0
votes
0answers
33 views

Flot line chart getting hidden

If I try setting the height of the x-axis label, then the line chart( displayed using Flot) is getting hidden. Why is this happening and what's the solution? #placeholder .flot-text .xAxis ...
1
vote
1answer
24 views

How to fill a flot line graph without opacity?

How can i fill a flot line graph with no opacity? lines: { show: true, fill: true, lineWidth:1 }
0
votes
0answers
23 views

Flot reset zoom

I'm using Flot Charts with mouse scroll to zoom in and out. I created a button to call zoomOut() and it works well, but I can't find any solution to how I can zoom out all the way so that it Looks ...
-2
votes
2answers
48 views

Add new item to specific index and item on array [closed]

I have a problem to create a valid json to use it with jquery flot from my rails 3 controller. Actually I have a working json but I need generate some more complex data. In my websites model I have ...
2
votes
1answer
30 views

Flot: Different Colors in chart plot area of flot chart

Ahoy, I have a flot chart on which I was able to get different colors on the plot area using the following grid : { borderWidth:0,markings:[ {yaxis: { from: 200.0, to: 240.0 ...
-1
votes
0answers
18 views

Flot :how to add “dblclick” event to the plot holder in JQuery/Flot code [closed]

I want to add "dblclick" event to the plot holder in JQuery/Flot code, i appreciate anybody give me any hints!
0
votes
1answer
16 views

FLOT unable to get x-axis properly

I've been struggling with this problem for a few days now and i cant seem to find what i am doing wrong (or not doing), so i've finally decided to open a topic, because this is driving me nuts, and i ...
0
votes
1answer
33 views

How do i alert flot chart label

var str = $("#placeholder > .tickLabels > .xAxis > .tickLabel").html(); alert(str); <div style="font-size:smaller" class="tickLabels"><div style="color:#545454" class="xAxis ...
0
votes
0answers
14 views

JUMflot to draw horizontal stacked graph

Is there any way to use JUMflot plugin to animate horizontal stacked graph to grow from left to right? This is the default function for linear growth : function growLinear(){ if (data.actualStep ...
0
votes
3answers
99 views

Flot tooltip on hover

I have the following code showing the graph using Flot. I want to get the mouse hover to show a tooltip with the values of days/quota <?php include("connect.php"); $FundName=$_POST["FundName"]; ...
0
votes
2answers
41 views

How to suspend JavaScript to allow render

I have a little script that runs a simulation, of which I want to render the results 'live': for ( i < simulation steps ) { do_simulation(); render_with_flot(); } I noticed that the plot ...
0
votes
1answer
44 views

Flot graph animation possible?

Is it possible to animate flot graph similar to this "www.jqplot.com/deploy/dist/examples/barLineAnimated.html"?? How to add animations for the below code? ...
2
votes
1answer
51 views

Flot: time-tick at 0:00

I have chart showing data, with X-axis showing time. I would like to have ticks in the X axis being placed on 0:00 time each day. I had that working before I've updated to newest Flot. ... xaxis: { ...
0
votes
1answer
21 views

Create a break in graph in flot

My data for the graph drawn in flot can be discontinuous - some measurements can be missing. I am not allowed to interpolate over them - there must be a discontinuity, no value, no link between ...
1
vote
1answer
63 views

Preseve last Flot crosshair line and legend data after data refresh

Edit: After miro pointed out a flaw with how I was updating the plot I went back and rewrote the example. Now my crosshair is staying active after a data refresh unlike before which is good but the ...
1
vote
1answer
32 views

Json data parsing error for flot graph

datapie = [ {"label": "Running", "data": [19.5], "color":"#e1ab0b"}, {"label": "Stopped", "data": [4.5], "color":"#fe0000"}, {"label": "Terminated", "data": [36.6], "color":'#93b40f"} ]; Getting ...
2
votes
1answer
52 views

Grouping Data with Flot Charts

Scenario: I'm plotting a volume bar chart using Flot JS, with a per-minute data. So for example, for 3 hours, I have 3 x 60 data points being pulled from the database. Problem: Since there I have 6 ...
1
vote
0answers
38 views

how to display the value of the bar graph on the top of the graph using flot

I am using flot api to plot a graph as i increase or decrease my slider(type-"range"). How can i display the value of the graph at the top of the bar graph? currently i am using this piece of code but ...
1
vote
1answer
44 views

implementing threshold for bar graphs using flot api

i am using flot to plot a graph. i want to implement the functionality such that i am able to highlight a 10% growth in my graph showing in a different color other than the color i am using now. the ...
1
vote
1answer
38 views

Adding color through a function in flot graph

Can i add color dynamically by calling through a function passed by the user. I already have the options variable defined by default, the color which the user passes should sit in the option variable. ...
0
votes
1answer
27 views

Why isnt multiple else if statements not working to create flot graph?

if(options == verticlebar_graph ){ plot(plotname, plotdata, verticlebar_options); } else if(options == linechart_graph){ plot(plotname, plotdata, linechart_options); } else if(options == pie_graph){ ...
0
votes
1answer
36 views

Multi series,multi-Yaxis Dynamic flot

I am working on a chart using flot with multi-Yaxis and dynamic series. Here is a sample of what i am trying to do http://jsfiddle.net/4Emr9/3/. Now, the question is, How do i add a y-axis ...
1
vote
2answers
67 views

Set width with jQuery for Flot Chart

I want to set a certain width in my jQuery for a Chart i've used on my page. I've set the width in my stylesheet using the class .sparkline-width. How can i call this class in my jQuery? HTML ...
0
votes
1answer
27 views

FLOT: Multiple YAxis with different tick size

Just want to find out if anyone have encountered this problem before. Basically I am currently using Flot version 0.8. I am trying to plot a chart with multiple yaxis against datetime in xaxis. The ...
0
votes
0answers
24 views

Calling multiple Jquery plot using tab

I have two Jquery plot real-time graphs, once the first is loaded, if I click on "graph 2" tab, the second graph is called but, not being loaded in the div where the first graph was previously loaded. ...
0
votes
0answers
18 views

Axis label in Ext flot

I am using Ext Flot in my application, my code is below which draws line chart. How can I put axis labels? var myGraph = new Ext.Panel({ header : false, ...
0
votes
2answers
77 views

flot chart does not stack multiple series with null at some points in series

I am trying to plot stacked area ( filled line ) with stacking using flot charts my data is is like series 1: [0,5],[1,3],[2,2],[3,2],[4,2] series 2: [0,5],[1,2],[2,null],[3,1],[4,2] series 3: ...
1
vote
0answers
48 views

Flot curved lines/Spline plugin which works with FillBetween plugin?

The Flot FillBetween plugin works nicely with line charts. However I need to smooth out the lines and make them more curvy. I have seen the CurvedLined plugin and the Spline plugin but both do not ...
0
votes
1answer
65 views

Multiple bar chat with Flot with x-axis string

i am using float charts. i faced a problem with multiplebar chart. when i am trying to get x-axis as "string" it shows only single bar. i need to show x-axis ticks in form for sting like city ...
1
vote
2answers
101 views

flot chart in angular.js directive has zero dimensions

I have followed the sample code that embeds a flot chart inside a angular.js directive: https://gist.github.com/jrmoran/3966529 The problem is that the outer chart element ends up being of zero width ...
0
votes
1answer
37 views

Receive data via AJAX with jQuery Flot

I have a problem with jQuery flot. PHP output (not JSON): [[1, 153], [2, 513], [3, 644]] ~~ [[1, 1553], [2, 1903], [3, 2680]] jQuery call: $.ajax({ url: 'xxx.php', success: function ...
0
votes
1answer
40 views

Replace Timestamp with PHP variables in Flot Graph

Hi I have a template which uses a flot graph, which uses timestamps to plot the data on the graph as displayed below. var d2 = [ [1364511661, 2],[1364630461, 20],[1364731261, 28],[1364824861, ...
1
vote
1answer
41 views

Plot the time axis with milliseconds in Flot

I am using flot library to plot the graph , i am able to plot only up to seconds using this xaxis: { mode: "time", timeformat: "%y/%m/%d-%H:%M:%S" } I want to also ...
0
votes
2answers
55 views

How to put text in time series chart in Flot?

I have a real time updating time series chart very similar to this one. How can I add some text to the chart starting at a certain time and it moves along with the chart? I am designating a time range ...
2
votes
1answer
166 views

Bad flot canvas chart size within Bootstrap tab pane on initial page load

I am building a Rails 3.2.11 app with Twitter Bootstrap and Flot (also HAML and Coffeescript). In a view, I have Bootstrap tabs implemented like so (partials are rendered in the tab panes.), ...
1
vote
1answer
99 views

jQuery Flot time-based axis panning issue

I've been tinkering, making a little chart with Flot and some of it's plugins. The purpose is to provide a chart tracking basal body temperature, with the date per day on the x axis, degrees on the y ...
0
votes
1answer
29 views

Flot shows wrong date from unix

i have a flot chart that should display two dates in its tooltips. I have those two unix times, [data] => 2013-04-17 [unix] => 1366167600 and [data] => 2013-04-18 ...
0
votes
2answers
83 views

ReferenceError: $ is not defined for original flot library

everyone, I got this error that inside the original flot.js library. I wonder what is wrong with this part of the script? *the error is shwon Fire bug from Firefox The error msg is: ReferenceError: $ ...
0
votes
1answer
68 views

Update flot chart with slider

Hi I have two scripts and want to make one of them. I get the value of the slider into the chart but if I use the slider the chart don't make changes. I tried different plot.draw(); but I don't find ...
0
votes
0answers
54 views

Flot pie + bar charts on the same canvas

Does anyone of you know how to place a pie chart next to a bar chart using flot? I would like them to use the same data. I tried to enable showing pie in series options, but then the bar chart is ...
0
votes
1answer
53 views

Flot xaxis ticks exceeds the specified number

I'm new to Flot, so my understanding of ticks is the number of columns that flot will draw on the chart. As my labels are quite long, having 6 ticks fits nicely. But most times, it just exceeds the ...
0
votes
1answer
115 views

Jquery flot pie with PHP MYSQL

I have some problems. Excuse me for my english. I'ld display the datas but nothing !! I dont know where is the probleme. I dont find it. Thnaks you for your help. code html <div id="pie2" ...

1 2 3 4 5 16