A sheet of information in the form of a table, graph, or diagram.
9
votes
7answers
10k views
Can the ZedGraph charting library for .NET be recommended?
I am working on a project for my company, and I need to integrate some graphs of different types and average complexity to C# in the process of studying stock markets. I found this free library on the ...
-2
votes
1answer
11 views
highcharts bubble change series name
I create a graphs on my site. It get the information from my db mysql and so It always update.
Now I want create, for each user of my site, a bubble chart with the visit, like and comment to every ...
0
votes
0answers
6 views
Asp.net Chart Radar Line - None of the XAxis labels are showing
Good afternoon,
I'm dynamically creating a number of Radar Charts with data from a database.
The data set looks like
X | Y
--------
1 2
2 2
3 1
4 4
5 0
6 2
When the charts are ...
1
vote
0answers
12 views
JavaFX bar chart zooming by rescaling
I'm developing a program that needs to zoom into a horizontal bar chart (ctrl+mousewheel), but not by magnifying it, but by rescaling it (just the width). The rescaling is done by changing the ...
0
votes
0answers
19 views
how to add context menu on Charts c#
I have the below chart to which i want to add a context mennu and perform various operations
<charting:Chart Grid.Row="2" Margin="12,0,162,0" Visibility="{Binding Path=ShowRunTrendChart, ...
0
votes
0answers
8 views
how to represent a graph with a set of complex numbers
Assuming that you have a set of complex numbers, for example:
1 + 2i
-2 + 3i
0.5 + 0.02i
How will the graph look like? Are they points on a two-axis graph? Or a line chart?
Any help would be ...
0
votes
0answers
3 views
Cumulative flow diagram for the rally Kanban board
It seems like there is no CFD for the Rally kanban board (i.e. not usin iterations), where you define your own states, and the diagram then updates the amount of points (plan estimate) across work ...
0
votes
1answer
27 views
How to create a historgram from json
I need to create a nice looking histogram using a json response from my back-end service.
I have looked into some freely available charting api, but none I found has option to create histogram.
...
0
votes
2answers
19 views
Google Chart Tools and JSON
On this example https://google-developers.appspot.com/chart/interactive/docs/quick_start The method data.addRows() takes a list of lists.
I have a URI (/data/mydata.json) that returns this data
...
2
votes
1answer
57 views
jquery “listview” and charts
I have some troubles with display charts (jquery Charts) into a web.
I have two pages (1.html and 2.html). The first contain a listview that links with the second page. The 2.html displays the chart. ...
0
votes
0answers
17 views
ASP.Net Chart with multiple series
I have datatable with below data with person experiences(number of days).
Department | Person | < 1 Year | < 2 Years | < 3 Years
...
1
vote
1answer
36 views
How to change bar chart value on each bar to custom value?
Though I have values on the asp graph as attached, what I need is a different value to be shown on each bar.
For example instead of 5 on the bar graph I need to display 50 (instead of the label ...
0
votes
1answer
19 views
Label above the bar - D3.js, Rickshaw
I am using Rickshaw which uses D3.js. I`m using the below code to generate a bar graph
graph = new Rickshaw.Graph({
element : document.getElementById("chart"),
...
3
votes
1answer
86 views
How i can hide “0” labels on Y and X axis ZedGraph
Here's what I am talking about:
Is any way to hide that "0" labels on Y and X axis? I'm using ZedGraph.
26
votes
2answers
9k views
PHP MYSQL Google Chart JSON Complete Example
I have searched a lot to find a good example for generating Google chart by using Mysql table data. I have searched couple of days and i came to know that there are few examples available for ...
0
votes
0answers
8 views
Kendo javascript chart legend with value
I need to show the values of the chart nearer to legend in kendo javascript chart, is there any option in kendo to do it?
1
vote
1answer
555 views
asp.net 4.0 chart control
I have some weird problem with my asp.net charting control.
Everything is working fine on my locale machine but when I load my project to my website host, sometimes the images appear and sometimes ...
-1
votes
0answers
17 views
Renew data in amchart
I made a chart using amcharts. I take the data for chart using this code
var chart;
var chartData = [];
$.getJSON('f2.php', function(data) {
$.each(data, function(key, val) {
...
-1
votes
0answers
11 views
how can i change the labelstyle.angle without affecting the width of the chart?
Whenever I change the labelstyle.angle to something like -30 the width of the chart changes and I'm not sure why. Can someone shed some light on this?
This is the C# code:
...
1
vote
1answer
31 views
OnSelectionChanged event for chart controls in Modern UI Charts for Windows 8
I am using Modern UI Charts for Windows 8 and I need to do a drill down when the user selects a series item in the chart
(for eg: I have a Column Chart which shows a student Year wise performance and ...
0
votes
0answers
20 views
Add tooltips to chart in visual studio
I am working in visual studio 2010 (vb) sp1, Sql server 2012.
table is an entity and has 3 properties: name, Coulmn1, Coulmn2
Code
ControlChart.DataSource = table
...
0
votes
1answer
966 views
Achartengine repaint
I have one data connection in webservice. In Assynctask i get data every 5 second.
After the data arrived i make new dataset and becuse the mChartView living i just repaint. And here comming my ...
0
votes
1answer
50 views
Data Point Label Is Not Showing On First Bar Of Bar Chart using MS Chart
i am using microsoft chart in asp.net and I have a simple column chart with point labels, however, the first data point is not showing for the bar closest to the Y axis. I have five year of data ...
3
votes
2answers
642 views
Scala, Charts and Google Visualisation API
Those anyone know of a Scala Library for Graphs / Charts or an implementation of the Google Visualisation API.
Cheers
0
votes
1answer
4k views
FusionCharts vs GoogleCharts vs HighCharts suggestions required for commercial use
I find that FusionCharts v3 evaluation and HighCharts cannot be used for commercial purpose. Google charts is the best option but those are not as good looking as any of the above. They don't even ...
5
votes
1answer
602 views
Speed comparison of JavaScript charting libraries
I am working on a dynamic report where charts need to be recreated on demand, because of data changes or analysis needs.
I'd be interested in a speed comparison of JavaScript charting tools currently ...
0
votes
1answer
55 views
Not able to use Modern UI Charts for Windows 8
I am trying to use Modern UI Charts for my Windows Store app but I am not able to get it working.(Cannot see the Chart)
A similar issue was logged by another person here along with the code
Can ...
0
votes
0answers
12 views
How to convert google chart to image with Google Visualization API
I have created a Scatter Chart, I try to generate image from the chart? but it's not working.
Please tell me which API to do it.
OR how to get byte buffer image chart of Google Visualization API
...
5
votes
8answers
5k views
Recommendations for a Fast WPF Charting Control
I am looking for a fast WPF Charting Control. Until now we used the WPF Charting Toolkit, but that doesn't fit our needs in performance and usability.
We need at least the following chart types:
...
0
votes
0answers
10 views
Building a Doughnut Chart on Google API - Pie inside a Pie
I have been trying to build a doughnut chart that is compatible with WIX. I need the chart to be somewhat interactive, at least mouse-over effects are necessary.
Since Google API does not have ...
1
vote
1answer
1k views
How to hide the y-axis label of jqplot bar graph
I'm working on a jqplot horizontal stacked bar graph. I want to hide all the labels from the x and y axis. I was able to hide the x axis labels and markers but when I'm trying to hide the y axis label ...
0
votes
1answer
64 views
How can I read an Excel File with JavaScript (without ActiveXObject)
my friend asked me to make for a simple application to generate the chart (bar, curves) from an Excel file, so I opted to use JavaScript as a language since I know already the powerfull chart.js.
...
0
votes
0answers
7 views
plot jQuery flot chart is not displaying in IE
plot jQuery flot chart is not loading in IE, but it is working fine in chrome and in firefox.
I have included excanvan.min.js also. Even though it is not working in IE. Please help. Below is my ...
3
votes
1answer
343 views
Can Kendo UI chart legend automatically remove empty series?
I have Kendo UI chart (defined in a razor view).
I haven't been able to find anything in the documentation, is it possible to setup the legend to ignore empty series from the chart data or am I ...
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
12 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
28 views
Create a PHP array from MySQL data for use in Google charts
So I have a table of data that contains a fruit name and the amount of said fruit.
I have an SQl commmand("SELECT (fruit_name), (amount) FROM fruits").
I want to be able to place the information from ...
1
vote
2answers
922 views
How to display two series via Google Chart API?
I can't get the two series of numbers to scale together.
Here is sample code that you can paste into...
http://code.google.com/intl/en/apis/chart/docs/chart_playground.html
cht=lxy
chs=400x300
...
0
votes
1answer
42 views
from group to stacked graph with Rgraph, y-axis doesn't change
I've been looking around and couldn't find an answer for it, and I don't think it's a difficult solution, but I can't figure out how to do it.
I draw a grouped bar chart with RGraph. This is done ...
0
votes
0answers
11 views
In Google Charts, how can I color the subtituents of a province?
I'm new to Google Charts and from what I have researched, it uses the codes given by ISO 3166. I'm wondering how I can color the cities of a province given that they are not in the ISO 3166. Are there ...
0
votes
0answers
11 views
dojox.charting.Chart setDir does not work
I need to set dir of dojo chart to rtl (right to left) but it is not working. The chart is generated by following code:
require(["dojo/ready", "dojox/charting/Chart2D", "dojox/gfx/utils", ...
1
vote
0answers
33 views
Rubberbanding with OxyPlot
I am using OxyPlot for charting in my application. I want to extend the OxyPlot library to include a rubber-banding line series, similar to how a polyline might rubber-band in a CAD application.
I ...
0
votes
0answers
12 views
Gaps in data series for Wijmo's wijlinechart
So I am using a Wijmo 2.1.6 wijlinechart to display multiple data series, each of which may or may not have discontinuities--i.e., places where the line should break. I have been able to get these to ...
0
votes
0answers
14 views
Dojo chart won't display after addSeries
I am trying to create a chart in dojo. The issue is, as soon as I try and add any data to the chart, the chart renders blank (no errors).
Code:
var cPosition
...
1
vote
1answer
170 views
Google Apps Script Published Dashboard doesn't load data unless spreadsheet is open
I have a set of published dashboards that are linked to from a google site. The dashboards are all pulling data from a google spreadsheet, they are fairly basic - filterable datatables mostly. It is ...
0
votes
1answer
194 views
Uncaught TypeError: Cannot read property 'length' of undefined (Kendo Chart)
I have a problem with Kendo chart, when the List of item returned from controller have no item I have an error:
Uncaught TypeError: Cannot read property 'length' of undefined kendo.all.min.js:28
...
0
votes
1answer
24 views
Plot multiple embedded charts on separate sheets from shared data
my semi-working code below plots data from my "sheet1" to a chart, then moves it to its own sheet and embeds it there. All data is on "sheet1". Each chart needs its own new page. Every iteration uses ...
0
votes
0answers
15 views
Automatic resizing of LineChart fails if embedded in a pane
The following program fails to resize the line chart horizontally when embedded in a Pane (or borderpane of anchorpane for the matter)
If the line chart is directly parented to the VBox instead, then ...
0
votes
0answers
18 views
D3.js - partial path on graph
I'm developing a little application for heater control and display the temperature log with d3.js.
On the chart I want to display when the heaters are on.
I create a chart with a filled path with ...
0
votes
0answers
14 views
Microsoft Chart Control UI Issue
I've created chart in VS.net 2010 using Chart.Chart class. I'm getting data from database and binding it... following is the code sample for it...
var data = objMyCollection; //This is collection ...





