A line chart or line graph is a type of chart, which displays information as a series of data points connected by straight line segments.

learn more… | top users | synonyms

0
votes
0answers
6 views

d3 linechart - Show 0 on the y-axis without passing in all points?

I have a line chart. Its purpose is to show the amount of transactions per user over a given time period. To do this I'm getting the dates of all users transactions. I'm working off this example : ...
0
votes
0answers
10 views

UltraChart DataSource Multiple Series

There are different ways about how the data of a Infragistics Linechart can be initialized. However, I would like to use its Property 'DataSource' and format the data before, since I already use this ...
0
votes
1answer
125 views

g.Raphael Hide y-axis label in

I add a line chart with g.Raphael.js like so: var tl = paper.linechart(x, y, w, h, [[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]], [trendline], { axis: "0 0 0 1", colors:['#fff'] }); Sometimes, "trendline" will ...
0
votes
1answer
16 views

in Steema TeeChart - line chart, if add datetime in xAxis , axis legend text shows 2 times

in Steema TeeChart - line chart, if add datetime in xAxis, axis legend text shows 2 times (refer Image1.png), Here is my code ** foreach (HeatunitGraph item in graphdata) { dc = ...
0
votes
2answers
232 views

how to combine bubble and line chart?

I'm trying to make a bubble chart and draw a line to seperate the bubbles into two areas one bellow the line and one above it. so can i combine google's visualisation bubble and line chart? if not are ...
0
votes
0answers
33 views

Flot line chart getting hidden

If I try setting the height of the x-axis label, then the line chart( displayed using Flot) is getting hidden. Why is this happening and what's the solution? #placeholder .flot-text .xAxis ...
0
votes
1answer
25 views

simple D3 linechart not loading data

I have been trying to create an extremely simple linechart in D3. The data is retrieved from a single array, nothing fancy, yet, no matter how hard I try, the data does not load to the chart. I have ...
3
votes
1answer
4k views

Can't create a simple line chart in Ext-JS

I'm getting the following error when trying to create a simple chart. I'm getting similar problems within my app and I have been trying to narrow down the problem so I created a small reduction and I ...
0
votes
2answers
22 views

marker become invisible when line chart negative values in highcharts

marker of negative value become invisible in line chart type in highcharts My fiddle is : http://jsfiddle.net/TnTsr/542/ i have tried to change plot options but it seems like that there is no error ...
0
votes
2answers
50 views

How to Draw Simple Line chart in iphone?

I am a newbie to the graph functionality in an iPhone application. I am having array of numbers for which I want to make the simple static line graph without using the coreplot library since I have ...
0
votes
1answer
88 views

how to make linechart using Graphview library

i want to make a linechart using Graphview library that i taken from http://www.jjoe64.com/p/graphview-library.html my problem is i want to take data from JSON as bellow : [ { "lji_invest": ...
1
vote
1answer
786 views

how to autoscale xaxis of lineChart in primefaces 3.4

In my lineChart(primefaces 3.4), xaxis have many dateTimes lables and it overlap, is there any way to prevent overlaping in xaxis? when in lineChart I use extender attribute(with jqplot function), I ...
1
vote
3answers
69 views

How to Check and Uncheck all the Legend elements in HighCharts Linechart?

I want customize the checking and unchecking legend elements all at once, iam not getting any idea, can we do this? let me know way to do this..
0
votes
0answers
17 views

Axis label in Ext flot

I am using Ext Flot in my application, my code is below which draws line chart. How can I put axis labels? var myGraph = new Ext.Panel({ header : false, ...
0
votes
0answers
17 views

How to create line chart with multiple colors

How to create a line chart to indicate the on and off states of a component between given set of time periods.I want the charts to be created in java using jfreechart.The sample o/p i need is: The ...
1
vote
0answers
36 views

Why can't I modify the axes from a JavaFX LineChart?

I got a LineChart which actually hold two axes. I really need to manipulate the bounds for xAxis and the ticking, however I can't get the axis as a NumberAxis, I just get it as an Axis for which I ...
0
votes
0answers
62 views

how to add a secondary y axis on primefaces

How can i create a secondary y axis on primefaces 3.4? i already read the primefaces manual e googled out there Google tells that y2axis (from jqplot) is the way but primefaces manual doesn't mention ...
2
votes
4answers
271 views

gRaphael linechart draws values beyond axis

When drawing a linechart with gRaphael using milliseconds along the x-axis I commonly get inconsistencies in the placement of the data points. Most commonly the initial data points are to the left of ...
-1
votes
1answer
29 views

Reading from the cmd & storing delay as an int [closed]

When I ping my ip address on the cmd, I get back delays of 1ms,6ms,9ms etc.... I want to store these as an int in my java program so I can put them on a line chart! Any help or guidance would be ...
0
votes
0answers
9 views

Charting Ping delays in a 2D array

Basically what I am trying to do is to put the delay coming back from the network connection onto a line chart! I go to the cmd and ping my connection(172.16.80.1) I want to chart the delay that I ...
0
votes
2answers
221 views

Ext Flot dynamically change chart values

I am using Ext flot for drawing charts on my application. I want to update chart data with ajax request or with a button. I couldn't update values. Anyone have an idea? var graphDataArr = [{ label: ...
1
vote
2answers
143 views

How to create line chart with Margins of Error in R

I am looking for a way to plot data on population proportion over time, with showing margins or error, similar to this example: http://goo.gl/dbrbu. But could not find any instructions on that. ...
1
vote
0answers
38 views

I have to draw small oval in my iPhone projects line chart but only at starting point, ending point and at peak point

In my iPhone I have line chart view, in this chart I have to draw small ovals on starting and ending of line chart and also I have to draw oval on pick point of line chart only. for(int ...
0
votes
1answer
142 views

nvd3.js : no mouseover datapoint effects in a line chart on updating the chart

I'm trying to draw a simple line chart using nvd3/d3. Things are fine when the graph loads for the first time. But whenever I load new data and update the graph, the transition that occurs on the ...
0
votes
2answers
613 views

D3 multi line chart - strange animation

I have created a multi line chart with a simple animation. In the beginning there are no data and after clicking a button new values are emulated and the line "move" left. The move is animated using a ...
1
vote
1answer
23 views

JFreeChart LogAxis Frequency/Resistance multipliers

I'm trying to figure out how to dynamically format the values on the axes of my line chart based on the multiplier. I'm using LogAxis for both the X and Y axes, as follows: final LogAxis rangeAxis ...
0
votes
1answer
62 views

D3 linechart, can't edit the amount of ticks with an ordinal scale?

I asked a question before about d3, and they suggested me to use an ordinal scale, this would solve my problems. Indeed it solved my problems, but know I'm stuck with another issue... It draws ...
1
vote
1answer
188 views

Google chart api Line chart: Units don't match points

I have a Google chart api Line chart where the horizontal axis units don't match the corresponding points on the chart. See the image. I have used those options that makes sure that the h axis ...
0
votes
0answers
43 views

Specify which percentage of data to be shown in a LineChart

Is there a way to specify how much (in percentage) of the data should be shown on a LineChart in JavaFX? For the x axis I can just add less data to the LineChart, but how would this work for the y ...
0
votes
2answers
277 views

Google Visualization API - Multi-Line Chart

I've an array created after pulling records from the database. The array is like: // $xyz array Array ( [f30] => Array ( [December 2012] => 71 [November ...
0
votes
0answers
41 views

showDataEffect doesn't work on dynamic LineSeries - Flex 4 mobile adobe air

In my mobile app im trying to dynamically create series in mx:LineChart. Its working. What i need to do is applying effect when data is change. On static series it's always work but with this it is ...
1
vote
1answer
294 views

how to set/draw chart with minutes in jqplot line chart?

I want to draw chart dynamically.. depends of selection by user. below is screen shot for that.. in this I have doing something line this.. var plot2 = $.jqplot(div, mainArray, { ...
1
vote
0answers
121 views

Google Charts: Line Chart with multiple vAxis and Checkbox to add and remove values

I would like to make something like the Graph in Google Adnsese, where you can add more values in the chart and compare them in one graph. Has anyone some simple example of this with google charts and ...
1
vote
1answer
220 views

d3js Smooth lines for linechart

I am currently working on a d3js charts that updates based on the brush time window selection. The problem I am running into is that the lines on the main plot looks choppy. I have changed the ...
1
vote
1answer
231 views

d3.js line graph axis not displaying data correctly

I can't figure out why the data won't display correctly. I think it has something to do with the scale of the axis but I can't find any solutions. There is a line being drawn but it's to small to ...
0
votes
0answers
95 views

VB.NET: Setting Line Chart's X Axis as String and Retrieve Y Axis from the Database Using MySQL

I want to represent data from database on a linear graph. I want its X axis to be pre-defined strings, like Day 1, Day 2 and Day 3 and its Y axis to retrieve single-type data from the database. I've ...
0
votes
1answer
106 views

Setting starting value for Google Line Chart dynamically and redrawing chart

I am using the code below to generate a line chart for a projected financial balance. Data is generated from information in a MySQL database. What I would like to be able to do is to have a form ...
2
votes
2answers
525 views

AchartEngine Line Chart Xaxis Android

i am working achartengine on android and completed all works i have face one problem in line chart i mention the xaxis label but it's shows like 2,4,6,8,10,12 and so on with overlay with my xaxis ...
0
votes
1answer
72 views

Android TeeChart Line Chart Touch Sensitivity

I realized that the Line Chart Drag Point is not really sensitive and it is difficult to select a point to drag. Aside from that, occasionally might trigger the wrong point. I wanted to ask is there ...
3
votes
4answers
976 views

How can you access and style an individual line in G. Raphael line chart

Due to the very poorly documented raphael JS library, I beseech the collective wisdom. I have a working g. raphael multi-line line chart (similar to http://g.raphaeljs.com/linechart.html) something ...
1
vote
1answer
119 views

Display custom tool tip in Jqplot Line chart?

For example I have plotted a line chart based on the date and number of students registered on a particular day on x and y axis respectively. When i mouse over to a particular point in the line chart ...
1
vote
1answer
59 views

line chart issue

I have made the line chart given above. The problem is that I can't make that red line stop at the current hour. I want to be drawn only when the value is updated. I tried not defining the value, ...
0
votes
2answers
97 views

drawing on CandlestickSeries LineSeries makes candles narrower

I'm, using Flex 4.5. In my application I have a CandlestickChart with basic CandlestickSeries. I give the user the ability to add a linechart on top of the candlesChart by adding a LineSeries to the ...
0
votes
1answer
505 views

d3 line chart labels overlap

I've created a line chart based on the example found here: http://bl.ocks.org/mbostock/3884955 However, with my data the line labels (cities) end up overlapping because the final values on the ...
2
votes
2answers
205 views

How to display field values beyond dynamic line chart in jasperreport?

I use jasperreports and I try to display some additional data beyond the x-axis labels of a line chart and I'm facing several problems. The values I want to display are stored in a field, which's ...
0
votes
0answers
51 views

Achartengine set xAxis items width

İ have created a line chart with aChartEngine. But i can not set the width between two items at the x axis. As you see at the pictire, i want to change the width between 4. and 5. points. How can i ...
0
votes
1answer
60 views

Flex Stacked ColumnChart not showing up

I have the following xml structure: <root> <day name="Sun" values="21,22,25,26"/> <day name="Mon" values="27,20,22,25"/> </root> I want it to be represented in a ...
0
votes
1answer
104 views

how to change a point color, style or size in line chart using achartengine android

I'm developing an app now with achartengine to draw a line chart. Now I have a problem with an effect that I hope to fix. The effect is, when users touch a point on the line chart the color or style ...
0
votes
1answer
356 views

d3 linechart string domain x-axis

I'm relatively new to D3, and I can't figure out why something isn't working.. I want to draw a line-chart with d3, and this works fine, but I have problems with the axes. With the following code it ...
0
votes
2answers
286 views

How to show Pie Chart , Bar Chart and Line graph in single view in ios

I want to show Graph Charts in iPad ,which is some thing like below image.Please suggest me some idea how to do this ? I have taken reference from the tutorial How To Draw Graphs with Core Plot, Part ...

1 2 3 4 5