Questions tagged [jqchart]

jqChart is a chart plugin for jQuery and ASP.NET MVC.

jqChart takes advantages of HTML5 Canvas to deliver high performance client-side charts and graphs across browsers (IE 6+, Firefox, Chrome, Opera, Safari) and devices, including iOS and Android mobile devices.

Suppors Bar, Column, Line, Spline, Area, Pie, Scatter, Bubble, Radar, Financial (Stock and Candlestick) and Real-Time charts.

Resources:

34 questions
4
votes
0 answers

Documentation for stringFormat in jqChart

Is there some kind of documentation for the way stringFormat works in jqChart? I haven't found any on their website, not even a hint. Thanks in advance. Edit: Just found the docs myself:…
Vince
  • 1,517
  • 2
  • 18
  • 43
2
votes
0 answers

Object [object Object] has no method 'jqChart'

Here are my javascript files:
Muhammad Ali
  • 853
  • 1
  • 10
  • 18
2
votes
2 answers

jqChart date labels display only time

I’m creating a zoomable chart with jqChart. I’m using the code from this sample: http://www.jqchart.com/samples The issue is when I’m zooming the chart a lot, the x-axis labels switch form dates to times. How can I display the real date (not only…
Paul
  • 23
  • 3
1
vote
3 answers

JQchart executing before ajax response is returned

Below is the code that i use for calling Ajax request for binding the jqchart plugin. here the problem is the jqchart is called before there is a response from the Ajax call. Please I need help here: $(document).ready(function () { var…
Pakauji Pakau
  • 49
  • 1
  • 8
1
vote
0 answers

Live data from database to jqchart

I am using jqcharts. I have data from database and the value is getting updated continuously. I want the same thing to be display on my gauge. Pls help me with this code. This is my code to display my gauage. And in needles --> values.v1 is the live…
1
vote
0 answers

jqChart: starting with disabled serie

I have a php page that use jqChart PHP. It shows 4 lines, and here a piece of code. It there a way to start the graph with 2 of the lines "disabled" so not visible on the chart? ->addSeries('Budget C.F.', "SELECT valoreBudget FROM graph WHERE…
agodoo
  • 409
  • 6
  • 21
1
vote
1 answer

Displaying Dates Correctly for JQSuite JQChart

I'm trying to format a JQSuite JQChart to display the date correctly on the X-Axis. The select statement is returning datetime data (including milliseconds). I just want to plot the date in a format like "yy/mm/dd". Doing something like this only…
1
vote
1 answer

Why does it say input data array is not in correct format fro jqchart?

My data is in this format as belwo; i.e mymy= UnitedStates,65|UnitedKingdom,58|Germany,30|India,60|Russia,65|China,75 Code : var myarr = mymy.split("|"); var i=0; var myarr2 = []; for…
ambika
  • 11
  • 2
1
vote
0 answers

Add a interactable navigation button on top of jqchart

Can someone let me know how to add a navigator button on top of jqChart so that when I click on that button it helps me to navigate to other page or javascript method.
1
vote
1 answer

jqplot renders not good in chrome?Chrome Displays jqplot axes with improper alignement and padding

I am using jqplot in my jsp page..successfully integrated bar charts,line charts and etc.now i am facing the problem when i see this charts in chrome,in mozila same chart showing perfect with its alignment of y and x axis label,but when i see same…
BhavikKama
  • 8,566
  • 12
  • 94
  • 164
1
vote
2 answers

Change the orientation of text on categoryAxis of jqchart

I have a jqxchart where in everything is appearing perfectly. The only issue remains is of the text on the categoryAxis of the chart. the text is coming in the horizontal direction and its overlapping with the other text of the chart. Can any1…
Gautam
  • 1,728
  • 8
  • 32
  • 67
1
vote
1 answer

JqChart - How to display two graphs on the same page?

How to display two graphs on the same page? I tried to put a column chart next to a line graph, and using the variables with different names within functions, the two graphs are in conflict. Displays no error in firebug, but the graphics are…
Guttemberg
  • 411
  • 1
  • 6
  • 20
0
votes
1 answer

jqChart: show tooltip along one axis only

I'm trying to edit the jqChart plugin so that chart tooltips are displayed while moving the mouse along the X axis. Here's the scenario: If I have a line chart, I do not want to hover my mouse precisely over the line to get the tooltips containing…
Zishan Neno
  • 2,647
  • 7
  • 34
  • 58
0
votes
1 answer

Is there zooming option in jqChart?

I wonder if there is zoom option in jqChart?
Иван Бишевац
  • 13,811
  • 21
  • 66
  • 93
0
votes
2 answers

How to pass JSON to jqChart?

Client side sends post request to php on server side. Php returns json to client. Example: [["1","-1"],["2","0"],["3","0"],["4","0"],["5","4"],["6","5"],["7","3"]] Now from the client side I have to create chart. I created chart with jQuery plugin…
Иван Бишевац
  • 13,811
  • 21
  • 66
  • 93
1
2 3