Tagged Questions

jqPlot is an powerful jQuery extension to generate graphs (line, bar, bubbles, etc.) client/web browser side based on JavaScript. It is conceived, developed and maintained by Chris Leonello. jqPlot is an open source project dual licensed under the MIT and GPL version 2 licenses. jqPlot is open ...

learn more… | top users | synonyms

6
votes
1answer
172 views

Why does jqPlot's DateAxisRenderer crash when showing a single data point?

I've isolated an end case with jqPlot that causes it to "crash" (halt indefinitely) my entire page's javascript. This happens when I use the DateAxisRenderer in a line chart with a single value like ...
5
votes
1answer
12 views

How to zoom jqplot from external button?

I am using jqplot chart to draw chart it works fine, To zoom chart i am using cursor and by that cursor i can zoom but i am trying to zoom that from button that is outside of chart. Since we are reset ...
5
votes
1answer
4k views

jqplot tooltip on bar chart

I'm using the jquery plugin jqplot for plotting some bar charts. on hover, I'd like to display the tick for the bar and its value on a tooltip. I've tried highlighter: { show: true, ...
4
votes
1answer
42 views

Rotate jqplot or any other jquery plot by 90 degree

I would like to display a plot after rotating by 90 degree. I prefer any jquery based plotting tool. Fig. 1 is diagram of the normal plot Fig. 2 is diagram that want to have by rotating Fig. 1 ...
4
votes
3answers
78 views

Get an element's id where there is none?

So, I am using jqPlot which has this stupid requirement that it needs an element's id attribute to plot. However, my javascript uses jQuery, which operates on elements, and I don't want to rely on a ...
4
votes
1answer
1k views

Needing example to load jqplot with multiple series, date-based data from json file

Been searching and cannot find exactly what I am looking for. Need to load multiple series into one jqplot, with each series coming from its own data file. The example here ...
3
votes
1answer
54 views

jqplot bars not lining up with grid

Does anyone know why some of the bars are not lining up in this jqplot bar graph? You can find this at http://www.vonlay.com/jollymeter/app
3
votes
2answers
171 views

Crossbrowser chart library

I'm trying to find a jQuery chart library for plotting measures from inverters in a web application that is able to run on every kind of browser with a correct performance. By the moment I found ...
3
votes
1answer
712 views

How to return a multidimensional array as JSON for jqPlot chart in ASP.NET MVC C#

The json needs to be in this format: var data = [ ['Heavy Industry', 12],['Retail', 9], ['Light Industry', 14], ['Out of home', 16],['Commuting', 7], ['Orientation', 9] ...
3
votes
1answer
498 views

jqPlot: hide axis ticks?

Here's a default jqPlot axis with ticks: Setting "showTicks: false" on the x-axis removes everything: I want to display the numbers and hide the ticks - the little dashes between the numbers and ...
3
votes
2answers
414 views

Charting library that does not cause memory leak when updating chart

I want to build a page with interactively refreshing charts based on the data that is being fetched from the server asynchronously using AJAX. I really like jqPlot, but when trying to update the graph ...
3
votes
0answers
1k views

jqplotClick event on jqplot series (ios devices safari browser)

I am just wondering if anyone here has encounter any issue when performing action click on jqplot items. So here I have a barchart rendered with jqplot. I binded click event on jqplot chart with ...
3
votes
2answers
3k views

reuse jqplot object to load or replot data

I am using JqPlot for charts , my problem is i want to load different data on different click events. But once the chart is created and loaded with the data for the first time; i don't know then how ...
3
votes
1answer
4k views

Problem with JSON and jqPlot [closed]

I've problem with JSON and jqPlot. jQuery script: var line = [ ]; $(function(){ $.getJSON('bin/gielda.php', function(data){ $.each(data, function (index, value){ ...
3
votes
1answer
3k views

JavaScript charts - dynamically adding data points

I am trying to dynamically add data points to jqplot as a result of AJAX received data, but I do not see a way to accomplish this. Is this not possible? If it isn't, what other packages are available ...
2
votes
0answers
49 views

Click on point labels through zoom canvas

I have onclick event on point labels. Works fine on IE8+, Firefox and Chrome. Zoom also works fine. But on IE7, IE6 I can't click on point labels because we have jqplot-event-canvas and ...
2
votes
0answers
106 views

JQPlot stacked bar each stacked label count instead of accumulation (incremental) count

I want to display label text in stead of segment total for each label. Like, 2, 7, 14 should be in stacked bar with 2, 7, 14 and then 23 is total. But currently in exmaple it is showing segment total ...
2
votes
2answers
675 views

jQPlot in IE (Using rePlot or reDraw)

I'm using the jqplot plugin to display gauge on an site. This runs perfectly in FF/Safari/Chrome but have to use excanvas to run in IE8. The problem is that the gauges are created dynamically, and so ...
2
votes
1answer
439 views

Changing the width of the y-axis label area in jqplot

Ok, I've got a bar chart. And it basically works... but the labels on the y-axis are kinda long and wrap and then run into each other. I've tried changing the css, but it gets overidden by JS. I ...
2
votes
1answer
2k views

JSON for jqPlot

I would like to use jqPlot usinge data from server side coming in JSON, like described in this example: http://www.jqplot.com/tests/data-renderers.php My code is nearly the same like the example: ...
2
votes
1answer
834 views

jQuery jqPlot library 12 hour Time Y-Axis Inversion issue

I've started using jqPlot recently. The generated graphs look amazing and I love it. There are a few little things to learn here and there, but overall it's great. I'm using the stacked bar ...
2
votes
3answers
5k views

How to refresh jqplot bar chart without redrawing the chart

I have a jqplot bar chart and I want the chart data to be changed when the user changes the value on a drop-down list. That works, but the problem is the bar chart redraws, one over another, each ...
2
votes
1answer
549 views

Protovis and JqPlot performance

I am evaluating the Protovis and Jqplot javascript visualization toolkits. I found both are good. But I want to know their performance while plotting huge number of data points say 1,00,000 to ...
2
votes
1answer
3k views

How to i set jqplot bar chart colours per bar?

I'm trying to set the colours of my jqplot bar chart bars. There will always be six bars present, grouped into sets of 2 bars. Here is an example of the data being plotted: line1 = [6000, 5000, ...
2
votes
1answer
2k views

JQplot : blank chart when print IE

Hi I have some problems using Jqplot with IE. All graphs I try to print are blank. When i click on "preview before printing", the graph is displayed correctly. But when I really print the graph, ...
2
votes
1answer
2k views

jqplot changes the color of graph on mouse hover

jqplot changes the color of the fill when mouse hovers... I want to remove that effect.. How ?? here is the options used. : var options={ series: [{ ...
2
votes
2answers
1k views

Jqplot DateAxis rendering is not proper

I tried to plot data useage per day using jqplot along with its dateaxis renderer, the data was static to test the graph, but i found that the points on graph is not corresponding to the exact date on ...
2
votes
2answers
2k views

IE8 Printing issues with Jqplot

I am testing jqplot with IE8. When I tried to print, the axes labels were offset. I used Andrew Bullock's Canvashack as a ...
1
vote
1answer
34 views

Adding external graphs libraries

I'm learning how to integrate ATK4 with an external graph library. Anyone, has some recommendations about this ? thanks. Alejandro
1
vote
0answers
59 views

jqPlot: print pointLabels from json file

I'd like to render a chart from a json file with jqPlot. With the help of some examples I came to the following code that work fine: $(document).ready(function(){ var ajaxDataRenderer = ...
1
vote
1answer
91 views

How to change Bar color based on threshold values in jqplot?

Is there a way to set/change the bar color based on a threshold value in a bar chart. var s1 = [460, -260, 690, 820]; For the values specified above, the bar for the one below -200 (bar for -260) ...
1
vote
1answer
50 views

jqplot - Individual values, not totals in stacked chart

In a stacked bar chart we can show total of each series in every stack, like this However I want value of each series to be shown, not total like this(please ignore the fact that the two samples ...
1
vote
1answer
61 views

jqplot render outside visual area

I'm using jqplot to draw a simple bar chart however only half of the first and last bar are being rendered. here is the image Is there a way to make the chart fit inside?? Thanks UPDATE *On xAxis ...
1
vote
1answer
32 views

jqPlot target that doesn't have a static id

I'm just playing with jqplot for a few hours but I couldn't find how to specify the target in a more specific jquery way. for example if I have the html code: <div id="chart"></div> I ...
1
vote
1answer
51 views

specify which series groups should be plotted on which Y Axes

I am trying to figure out if its possible to series group plotting with respect to Y axes for example i have 5 series physics, chemistry, maths , literature, programming . assume my data is also ...
1
vote
1answer
206 views

Jqplot vs Google chart API [closed]

I am looking for a charting library and zeroed in on JQplot the library looks impressive. however i didnt got much info about(reviews) about Google chart API, has any one compared the pro's and cons ...
1
vote
1answer
25 views

Dragable only one of plot series

I have 3 series on my chart. Is it possible to give user only one serie to modify (as dragable line) whilst other can't be modify?
1
vote
1answer
77 views

X-axis ticks (label) are not displaying properly as dates

I have a graph like in this link: http://jsfiddle.net/bqE7H/ I want to display the X-axis labels as dates like nov 1, nov 7, nov 13 in place of 1.0, 7.0, 13.0. I have tried using dateAxesrenderer but ...
1
vote
2answers
93 views

Square when pie jqplot is 100%

I am using jqplot for drawing a pie chart. But when I draw a pie chart with data that represent 100% of a variable, it shows a very strange pie chart. This is my code <script ...
1
vote
2answers
262 views

jqPlot DateAxis tickInterval not working

I'm trying to draw a chart with a single datapoint each month. I'm sending this through to jqPlot as a single point on the first of each month: $.jqplot('actualChart', ...
1
vote
1answer
277 views

Creating jqplot graph in php page

Im trying to learn php by doing a little project using apache server. I have a php page where I want to display a bar chart with jqplot using data i pull from a MySql query. I already have a query ...
1
vote
1answer
142 views

Why is my jqPlot not rendering a canvas?

I am trying to use jqPlot for a bar graph and I can't get it to show anything. I have included the jqPlot code and all the plugins. I am not receiving any errors whatsoever I have copied the example ...
1
vote
1answer
151 views

How to render jquery jqplot 3 year stacked line graph with a date axis render

I would like to be able to use jqplot to stack 3 different years of data on top of each other to compare the data accordingly. The only way to do it that I have found is to "hack" the dates of each ...
1
vote
1answer
209 views

JQuery : Tooltip x-axis label for bar chart JQPlot

I need to add a tooltip label in the each bar of the bar chart indicating what is name in x-axis. I try using highlighter but what is showing is the index numbers. Can anyone help me on how to do ...
1
vote
1answer
298 views

jqplot and stacked chart data labels

I am having a problem with jqplot and positioning the data labels on stacked charts. I am charting three data values per column. The problem is when one of the data values is very small like 1% the ...
1
vote
2answers
377 views

Problem with assigning data to JQplot chart getting data dynamically using jquery

I'm trying to do the following: Get some data from the backend and bind it with a JQplot candlestick chart. What i've accomplished: The data is being generated in the backend The data is being ...
1
vote
1answer
146 views

Trying to make stack column bar chart with specific start and end time. Can use Jscript or php

Thank you for taking the time to read my post this is taking me ages. Basically I want to create a graph that displays 07:00 at the bottom to 20:00 at the top of the y axis. Then on the x axis I want ...
1
vote
0answers
148 views

JQPlot - Show real input value in pointLabels label instead of point location

How can I set pointLabels to show input value instead of point location ? Now labels are like this : mean labels are : 16% 19% 3% 7% 4% 11% 4% 7% but I want to show like this : 16% 3% 3% 4% 4% ...
1
vote
0answers
108 views

JQuery Radial Plot with zooming

Does anyone know of a JQuery Radial chart that also has zooming functionality. RGraph http://www.rgraph.net/examples/rscatter.html does not have zooming functionality. JqPlot has zooming but does not ...
1
vote
1answer
351 views

My Jqplot pie chart is being displayed without any color for the small table inside the pie chart

i am using Jqplot pie chart inside my asp.net MVC 3 web application , but the problem is that the small table inside the pie chart which contains the chart label are being display without any color. ...

1 2 3 4 5