jqPlot is a plotting and charting plugin built on top of jQuery. The grid, axes, shadows etc are all computed and rendered by plugins. It supports custom event handlers, creation of new plot types, adding canvases to the plot and many more features.

learn more… | top users | synonyms

0
votes
0answers
26 views

JQuery, jqPlot, DataTables: Draw the chart after the row is expanded

pretty new to jQuery, but I have a table with collapsible rows that display content when the rows are expanded. We want to have a graph drawn when the row is expanded, and my code in the expanded ...
0
votes
0answers
11 views

jqPlot: Overlapping Series

I have an issue with the jqPlot. I want to plot dates as a series. I have always to points (a begin and an end date). But when I have to series with the same dates or part of the date range is the ...
0
votes
1answer
20 views

jqPlot Pie chart data label does not show

I have such pie chart which has data labels with values ["", 20, 1, 3, "", "", "", "", 4, 6, 6], it shows all values without any problem, except that it doesn't show value 1. How can i fix it or is it ...
0
votes
0answers
12 views

How can I draw simple shapes in jqPlot?

I have a candlestick chart and I want to add simple canvas lines or circles to it in specific locations to highlight interesting areas on the chart. As an example, say I want to use the code in: ...
0
votes
0answers
8 views

Issues with jqplot bar charts in IE8 in arabic mode

i'm using jqplot to draw bar charts. charts are drawn without any problems in all the other browsers. but only in IE8 i have this issue, that is only happening when the web application is in Arabic ...
0
votes
0answers
14 views

jqPlot: possible to dynamically add a new series?

Is it possible to dynamically add a new series to an existing jqPlot object? I have a jqPlot object that uses the AJAX data renderer to retrieve 2 series. This part works works fine. Based on user ...
0
votes
0answers
16 views

How to insert text or label inside jqplot pie chart at the end?

Is there anyway to insert text in JqPlot PieChart, as shown in the figure ?
1
vote
1answer
55 views

jQPlot charts not working in jquery mobile pop up

I have a line chart using jQPlot that needs to be displayed on click of a jquery mobile pop-up. Unfortunately it doesnt show up.. Below is my code. <!DOCTYPE html> <html> ...
0
votes
0answers
22 views

javascript error : htmlfile: Type mismatch. in jqplot barchart

why this piece of code throwing javascript exception:- <script type="text/javascript"> $(document).ready(function () { $("#ItemDiv").click(function () { $.ajax({ cache: ...
0
votes
1answer
13 views

JQPlot replot with meter

I need some help with getting the replot method to work. I have a simple script and it simply doesn't update the needle. I've 'dumbed' it down to be all hard coded to change from onload of '1' to an ...
0
votes
1answer
20 views

How to add jqplot bubble chart axis label

I am using jqplot bubble chart. I want to show label on x and y axis. I tried as mentioned here. But it seems it does not work with bubble chart. ...
1
vote
1answer
41 views

Loading simple jqPlot with jQuery Mobile and Rails

I'm trying to put a simple jqPlot on my rails app, but I can't get it to load.. here's what's in my view: <div id='chart1' style="height:400px;width:300px; "></div> <script> ...
0
votes
0answers
18 views

display series name when mouseover in jqplot

i implemented a multiline graph in jqplot,I would like to show the series name when the moves to the particular series i studied the cursor but i didn't get that option please help me.my script is ...
0
votes
0answers
18 views

Draw multiple line in jqplot using json Data

Iam trying to Draw multiple line in jqplot using json Data I have doubt on jqPlot, i am using json data to plot a chart in jqPlot.I have two sets of json data like this var jsonData1 = ...
0
votes
2answers
72 views

Error $ is not a function in xpages

I am plotting a graph in XPages using QJplot. It was working fine before until I copied the entire process ie, buttons that extract data, buttons that plot data etc. Now for some reason I keep getting ...
0
votes
0answers
11 views

Automated emails that have jqplots as attached pdfs, PHP

I'm building a help desk app on a windows server running xampp. What i'm trying to accomplish is, to have the technicians receive an email from the application with an attached pdf that has various ...
0
votes
1answer
26 views

Formatting Y axis numbers in jqPlot

I managed to format my y axis text to two decimals, but since im using very large numbers, is there a way i can display my numbers like: NAD 100,000,000.00 rather then NAD 100000000.00 by using ...
0
votes
1answer
36 views

Javascript charting libraries for lines on coordinate plane

What would be the easiest to use javascript (line) plotting libraries for data that looks like this?: [ {"Name" : [1.5, 2.3]}, {"Name" : [5.6, 6.7]}, ... ] Each "Name" => [x,y] pair. "Name"'s would ...
0
votes
1answer
34 views

Jqplot different kinds of rendering in one chart

I would like to build somthing like the chart in the sample: barLineAnimated.html. my problem is; i have more then 1 series, which i like to render as bars, and one should be rendered as line. I can't ...
0
votes
1answer
62 views

primefaces barchart extender how to set tick interval dynamically

I am using primefaces bar chart with an extender. I want to get Dynamic tick intervals. Can I pass the bean variable as value for tick interval in extender? How can I achieve it? Thanks
0
votes
1answer
50 views

Show date in jqplot tooltip

I am using jquery jqplot(bar chart) with ruby on rails application. I am sending date as Apr, 2012 and amount in dollars to chart. On bar mouseover tooltip is showing date as index i.e [1, $200], ...
0
votes
2answers
50 views

Why is jqplot behaving this way?

I have a chart that consists of 4 series. Three of the four are stacked bar charts and the forth is a line. Why is the graph acting this way? I assumed that it didn't matter in what order I passed in ...
0
votes
1answer
43 views

jqPlot: Are overlapped bar charts possible?

An example probably describes what I want to achieve most easily. If I have, for example, the series [80, 70] and [90, 90], I want the first of the stacked bars to have the first series' color from 0 ...
0
votes
1answer
78 views

primefaces barchart X axis decimal tick labels with single decimal digit

How can I get decimal tick labels on X axis the decimal values should have only one decimal digit. can I achieve it? please suggest me thank u
0
votes
1answer
43 views

jqPlot bar chart with linear scale

I would like to get bar chart with linear ticks on xaxis, here the code - <script class="code" type="text/javascript">$(document).ready(function(){ var years = ['2000', '2010', ...
0
votes
0answers
19 views

JQPlot Stack graph side by side

I want to render a stack graph for some data. But the graph must have side by side stacks in one x-axis scale using JQplot . I wanted a graph like this ...
0
votes
0answers
32 views

Panning bar charts of jqplot using scroll bar

Can you please guide me how to add feature for panning using scroll bar for bar charts in jqplot? Regards, Gaurav K
0
votes
1answer
26 views

Show the minimum ticks in Y axis JQPlot

Is there anyway to set the minimum ticks in Y axis? i have tried this: plot1 = $.jqplot('graphCanvas', [<?php echo $line1; ?>], { animate: true, ...
0
votes
1answer
28 views

jqplot start graph axis labelling from top

Want a simple fix for jqplot axis display. I am using Bubble charts for chart display, and CategoryAxisRenderer for axis. All I want is the axes to display in top-down fashion, rather than the ...
0
votes
1answer
163 views

primefaces barchart : displaying data point on bar

how can I display data point on bar in barchart? I don't want to use datatip or tooltip which will highlight data points only when they are moused over. I want to display the data point always on ...
1
vote
1answer
61 views

if a requireJS module sets a global on $, how do I execute the module code only when the global has been assigned?

I'm trying to load jqplot as a requireJS module. My main.js has a path and shim like this: require.config({ , paths: { plot: '../js/plugins/jqplot/jqplot.module' } , shim: { ...
0
votes
1answer
65 views

jqPlot - Insert Date (yyyy-mm-dd) to (dd/mm/yyyy)

The input in the example (jqPlot) code is yyyy-mm-dd. var line1=[['2008-08-12',4], ['2008-08-13',6.5], ['2008-08-14',5.7], ['2008-08-15',9], ['2008-08-16',8.2], ['2008-08-17',7.2], ...
2
votes
1answer
126 views

jqplot not working for dynamic data

I am trying to use jqplot to plot bar chart graph of data retrieving from SQLite DB for Phonegap - Android how to use the same code for db values. this code with static data is working fine inside of ...
0
votes
0answers
17 views

jqPlot - Asynchronous Plot Loading?

I am using the jqPlot library to create pie charts, and the charts load properly only if I place an alert() before calling the function in which I use jqplot to draw the charts. I know that this is ...
0
votes
0answers
38 views

How to enable click event for y axis ticks (label) in horizontal bar chart using Jqplot

I am trying to implement the horizontal bar chart using jqplot.I want to enable click event for the y axis labels. But i tried it with the jquery using class name to get access of "y axis ticks" . ...
0
votes
1answer
32 views

Inline javascript to avoid hackish data APIs

I need to render a plot using jqplot from within a jinja2 template. The template has access to the data that needs to be plotted. I could pass the data to some external javascript by embedding it in ...
0
votes
0answers
47 views

jqplot using codeigniter not rendering the chart

I'm using JQplot to render the data send from the mysql database but the data are not plotted into the graph. This is the ajax call to the jqplot on the click of a button in my view. ...
0
votes
0answers
57 views

Jquery Mobile 'data-role=“page”' concept - Jqplot

I am populating a chart with user Input. And refreshing it whenever the values change. It work's in the same page, although when i try to put the chart in another data-role page, it doesnt work. Is ...
0
votes
1answer
30 views

jqPlot zoom highlight from left to right

I have a graph that displays date on X axis and some values on Y axis, what I would like to do is: when a user selects a "zoom area", the highlighter should auto-magically select from top to bottom of ...
0
votes
0answers
20 views

jqplot centering month between ticks

Pretty straightforward question. I have a jqplotchart that looks like this: and I want it to look like this (check x-axis): > this is a photoshopped image :) So, I want the tick line to be at ...
0
votes
0answers
85 views

dynamically adding or removing series to the existing jqplot bar graph

Is it possible to replot a jqplot bar graph with varying series no.Say I have two series on load ,i want to increase it to four or decrease it to one in the same plot. Is it dynamically possible to ...
0
votes
0answers
48 views

populate chart with DB - refresh jqplot

I am populating a chart with a web-sql db. It works pretty fine, although i don't know how to call replot()..I mean where... like, it gets the data, but i need to refresh the page manually to make ...
0
votes
1answer
59 views

JQPlot displays stacked bars horizontal wrong

I have a problem correctly displaying JQPlot stacked bars horizontal. My Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
0
votes
0answers
39 views

Jqplot Barchar jqplot function not loading

I am using Codeigniter.this javascript codes in chart_view.php var dizi= echo json_encode($sonuclar); ?>; jQuery.each(dizi,function(i, degerler) ...
-1
votes
1answer
93 views

How to convert the div content to an image and download in IE6+ versions? [closed]

I have used JQPlot in my project and i want to download the plotted graph as an image. I want to support IE7+. Thanks.
0
votes
1answer
66 views

jqplot backbonejs - no plot target specified issue

I am using jqplot with backbone js. The view contains an element called "dchart". To find an element, within the view in render, I can do the following and it works: chartElem = ...
0
votes
0answers
20 views

How to add a watermark to a jQplot chart?

I am using http://www.jqplot.com/ chart renderer. Does anyone know how I could add a watermark to the rendered charts? Thanks a lot, Xavier
0
votes
2answers
55 views

JQPlot - How to change the cursor to pointer on Hover to Bar in JQPlot?

I want to change the cursor to 'Pointer' when it hover to Bar of the JQPlot. I have tried to change in the CSS. But it didn't work. Please help me.
1
vote
0answers
61 views

Use json in script on the view in MVC3

I have the following problem: First I have a method in the controller, which return PartialView with model in Json format. Secondly I need to initialize the graphics (I using jqPlot - initialization ...
0
votes
0answers
75 views

jqplot rounding bar chart tooltip values

I have a bar chart with floating point values, but I want the y axis to display whole numbers, so I set axes.yaxis.tickInterval to a whole number. As soon as I do this, the tooltip values end up ...

1 2 3 4 5 19