Questions tagged [charts]

Charts are a graphical representation of data, most often in the format of a graph or diagram. Use this tag for questions about using a charting library API.

Charts are a graphical representation of data, using dots, lines, bars, geometric figures or other graphical elements. They can help you visualize vast amounts of data in a way that is easily understood. Similar to the saying "A picture is worth more than 1000 words", one may say "A chart is worth more than 1000 reports" ...

There are many different versions (types) of charts. Here are just a few examples of them:

Pie Chart Bar Chart Combined Chart Funnel Chart


Related tags

26456 questions
5
votes
1 answer

Accumulate values in chart series - WPF DevExpress

I am creating several line series for a chart control in DevExpress at run-time. The series must be created at run-time since the number of series can vary from the data query I do. Here is how I create the series: foreach (var item in…
St0ffer
  • 161
  • 1
  • 4
  • 17
5
votes
3 answers

D3.js Pie chart .. can pie slice move when selected?

Just wondering is it possible to do something like this with d3? http://jsfiddle.net/8T7Ew/ Where when you click on a certain pie slice the slice moves on click? Have the pie created up to this point just wondering if I can add this…
bp2010
  • 2,342
  • 17
  • 34
5
votes
3 answers

MPAndroidChart - How to change the color of PieChart center Background?

Im trying to use the MPAndroidChart library to develop a circular chart. But only Pie chart is available. So i tried giving two xvalue coordinates, with one color similar to background. So i got something similar to circular chart. But i'm not able…
Bala
  • 53
  • 1
  • 6
5
votes
1 answer

Showing X and Y Axis Labels?

I am using System.Web.UI.DataVisualization.Charting to create a chart, but I can't figure out how to add axis labels to it. I want to show labels like so: | | | | Y-Axis Label | …
Alexandru
  • 12,264
  • 17
  • 113
  • 208
5
votes
2 answers

Select chart within userform

I am looking to write a macro which copies formatting from one graph and applies it to multiple other graphs. What I am struggling to do is determine a way to allow the user to set the template chart and then select the multiple other charts. …
MatthewK
  • 171
  • 2
  • 8
5
votes
2 answers

MPAndroidChart with null values

I'm using the MPAndroidChart and am really enjoying it. A 'little' need I have is that I can put null values to the 'entrys'. I'm monitoring the apache conections on servers of my system, and I would to see if they is down (where I put the null…
Zero
  • 51
  • 1
  • 4
5
votes
1 answer

amcharts showing value inside bar

I'm using amCharts, and i want to show values inside bar This is how it looks at the moment: and I want it to be like this: This is my code to display chart: AmCharts.ready(function() { generateWidgetData('week'); // SERIAL CHART …
Web Radiona
  • 191
  • 1
  • 1
  • 8
5
votes
2 answers

c3 chart.load with multiple charts

I am using c3.js and c3.css to make several graphs on one page. I have multiple charts and want to update the data every 60 seconds so I use set interval, get the updated data, and then load it to a chart, however, it puts all of the data in the…
John
  • 51
  • 1
  • 3
5
votes
1 answer

How do I modify a chart series using EPPLus?

I want to ask about how to update series value of existing chart in excel using EPPLUS library. I can't find yet how to do it. I have created chart successfully, but still can't to update the series value. Anyone can provide me some sample code or…
Anti Mafia
  • 334
  • 1
  • 6
  • 21
5
votes
6 answers

Highcharts Column chart with drilldown, remove hyperlink like formatting from x-axis labels

I am using column chart with drilldown. Here is my JSFIDDLE. Now my problem is: I want to remove hyperlink like formatting from the labels on x-axis and dataLabels As you would be able to notice from my fiddle that I have already tried to apply…
Rahul Gupta
  • 9,775
  • 7
  • 56
  • 69
5
votes
1 answer

Area Chart with smooth lines possible with D3.js?

I am creating area chart with D3.js and I make it with smooth line. Is it possible? In my code I just create svg and put line and area on. I use dummy data. Here is my code below: http://jsfiddle.net/sota0805/mv48H/ // Data var lineData = [ { "x":…
Sm Yamashita
  • 244
  • 4
  • 14
5
votes
5 answers

Real time data plotting performance HTML5 canvas vs Dom appending

I have some realtime data: 3 integers that are changing over time. These integers are from my accelerometer readings: x, y, and z. I was thinking of a way to plot these data so it will be easier to trend the changes. There are many chart libraries…
ProllyGeek
  • 15,517
  • 9
  • 53
  • 72
5
votes
2 answers

How to make JavaFX Chart NumberAxis only show Integer value,not double

I'm trying to create a chart who's yAxis is designed to show number of employee number, so it must only show whole numbers. But I found it's not that easy as I already tried to yAxis.setTickUnit(1) but it won't work when the values are small(etc.…
Li You
  • 159
  • 3
  • 7
5
votes
1 answer

How to disable matrix Column sorting in rdlc?

I have entered data from January to December in order, but when displaying in matrix in rdlc it automatically sort alphabetically "eg.. April August ... September.." How can I disable this sorting?
Sagar Dev Timilsina
  • 1,310
  • 15
  • 32
5
votes
2 answers

How do I get the information about the selected node in the Google Charts Org Chart widget?

I have a chart rendered via the Google Charts Org Chart API. How do I get the data about the selected node when a user clicks on a node. I understand it to the point where I make the "getSelection" call to output selection information to the…
GregH
  • 12,278
  • 23
  • 73
  • 109