Questions tagged [jqplot]

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.

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 source and a lot of extensions are available. Most of the parts of jqPlot, like the grid, axes, shadows are computed and rendered by plugins. The plot elements are customizable and whenever required the plugins can expand the functionality of the plot.

Some of the features that are provided by jqPlot are:

Resources:

When asking questions on jqPlot:

  • Read the jqPlot docs carefully and search Stack Overflow for duplicates.
  • Isolate the problematic code and reproduce it in an online environment like jsFiddle or JS Bin.
  • Tag the question appropriately. Use the tag and use other web-development tags like -- , , -- as applicable. The most popular plugins also have their own tags, like and .
  • Indicate whether the version of the jQuery library used is not current, so that the answerer can provide version-appropriate solutions.
  • Mention which browser the code is having problems on, and what error messages, if any, were thrown by the browser.
1693 questions
0
votes
1 answer

jqPlot DateAxisRenderer tickInterval issue

I am using jqPlot to illustrate some time series data. At the same time, I have a drop-down menu which controls tick interval of the x-axis (time axis). The tick interval can be changed dynamically, but the last tick is always out of range. For…
TTT
  • 4,354
  • 13
  • 73
  • 123
0
votes
3 answers

Date axis in linechart using primefaces and jqplot

I've tried to show a linechart with primefaces and jqplot. But I don't get it. I have this code in my bean: CartesianChartModel graphic = new CartesianChartModel(); LineChartSeries series = new LineChartSeries(); DateFormat dateFormat = new…
Liesel
  • 1
  • 1
  • 3
0
votes
0 answers

Draw Line in jQplot with Sequence?

Right now jqplot draw line from left to right, but I want to draw line by specifying points e.g. Data: x-axis - 15, 10, 5, 25 y-axis - 10, 20, 30, 50 I want line start from 5 to 10 to 15 to 25 rather than from left to right. appreciate help.
Javed
  • 11
  • 4
0
votes
1 answer

How do I open a dialog from a jqplot pie chart using jqplotDataClick?

I am trying to open a dialog window whenever a pie slice is clicked in JQPlot pie chart. I've tried many different ways to try and get this to work but no luck. I know it needs to be bound to the jqplotDataClick function but I can't get it work that…
alien.ninja
  • 95
  • 2
  • 13
0
votes
1 answer

jqplot: yaxis label not showing

My question Using jqplot I've made a horizontal stacked bar chart. The chart is working fine, the only problem that I'm having is that the label on my y axis is not showing. Any help you could offer would be greatly appreciated! What I've…
mischa_
  • 13
  • 4
0
votes
1 answer

What's the good solution to display huge data on jqplot line?

I'm using jqplot for my chart. As you can see the picture I attached. The data used in chart is 1458 points, and it's look like I have fulfilled the chart with the ball blue color. I'm looking for a solution to make it look better, even if I use…
ted
  • 57
  • 2
  • 12
0
votes
2 answers

jqplot bar chart multiple series on one datapoint

I'm trying to get a jqplot chart to display a bunch of data in different colored bars with a key on the right, but the scaling doesn't seem to work properly. My data looks like this: data:[[1.03],[1.02],[1.05],[1.02],[1.011]], labels:["Imperial…
Tim
  • 248
  • 3
  • 14
0
votes
1 answer

Can I make jqPlot handle variables more accurately?

I've made a fiddle demonstrating two identical plots being fed the exact same data. One receives the data from an array generated from table cells, and the other has had the data written directly into the script that generates the plot. The…
James Mathieson
  • 419
  • 2
  • 5
  • 22
0
votes
1 answer

jqplot not hiding points outside chart area

I have the following JQ plot chart. plot1 = $.jqplot('chart1',[arr2],{ axes:{ xaxis:{ renderer:$.jqplot.DateAxisRenderer, tickRenderer:…
AntonCooper
  • 73
  • 1
  • 8
0
votes
1 answer

jqplot pad not working

I have the following code to plot a data from an json/ajax request function plotit(data){ $.jqplot.config.enablePlugins = true; $("#jqplot-chart1").empty(); plot1 = $.jqplot('jqplot-chart1', data,{ …
Z4k4r14
  • 136
  • 1
  • 11
0
votes
3 answers

jQuery/Javascript - Variable into CSS change

I'm writing HTML in Java using a servlet and I'm having a problem where scrolling over a DOM object (third party, jqplot) will light up the text for a particular list. I have HTML (declared before the jQuery):
  • user2124871
    • 803
    • 3
    • 9
    • 25
    0
    votes
    2 answers

    jqplot: split the xaxis tick text into words

    The labels I use on axis for my graph contains text with more than one word. Like this: and it looks bad. I tried (as you can see on the graph) to replace the wit spaces with brs or with \n in order to render the text in multiple lines. The result…
    Zelter Ady
    • 6,266
    • 12
    • 48
    • 75
    0
    votes
    2 answers

    jQplot gauge meter setting canvas color transparent

    I am using jQplot gauge meter. I want to set the background of the gauge as transparent. By default it is set to white(background-color). Please help me with this.
    Aniruddh Ambarkar
    • 1,030
    • 1
    • 11
    • 20
    0
    votes
    1 answer

    jqplot bar graph issue

    I need help to draq a graph with jqplot. The graph is simple, but jqplot make it complicated. I need to get a graph like this: . with some improvements: The colors are defined here: graphColors = ['#048ff1', '#79b924', '#ffa600', '#ef5257',…
    Zelter Ady
    • 6,266
    • 12
    • 48
    • 75
    0
    votes
    1 answer

    jqplot pass array uncaught exception: No Data

    I am trying to pass the contents of an array to the jplot function but I am getting No data. The array has been json encoden in php and it is an associative array. $.ajax({ type: "POST", url: "actions/myphp.php", …
    Athanatos
    • 1,089
    • 6
    • 15
    • 32
    1 2 3
    99
    100