Questions tagged [linechart]

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.

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. It is a basic type of chart common in many fields. It is an extension of a scatter graph, and is created by connecting a series of points that represent individual measurements with line segments.

2022 questions
6
votes
1 answer

Column Chart with lines - Combo chart customization

Which JS library is best to do the above type of chart ? I want to combine clustered column chart with line chart as shown in the picture above. My requirement is each column should have a low and high value set
Midhun Jayan
  • 223
  • 2
  • 10
6
votes
1 answer

MPAndroidChart - wrong values in getFormattedValue method. Where they come from?

I am working with a project which is using MPAndroidChart library which makes me really crazy, I want to remove it. The problem is I have created a custom ValueFormatter and I can't understand where these values come from, all are wrong. private…
Davoud
  • 2,576
  • 1
  • 32
  • 53
6
votes
1 answer

Multiple lines on line plot/time series with matplotlib

How do I plot multiple traces represented by a categorical variable on matplotlib or plot.ly on Python? I am trying to replicate the geom_line(aes(x=Date,y=Value,color=Group) function from R. Is there a way to achieve this on Python without the need…
user7438322
  • 109
  • 1
  • 2
  • 6
6
votes
2 answers

D3 - adding grid to simple line chart

In the following simple line chart, I want to add grid to x and y axis. Can someone help me in that? SNIPPET:
Deadpool
  • 7,811
  • 9
  • 44
  • 88
6
votes
4 answers

How to disable Chart JS tooltip when there is no value?

I am using Chart JS v.1.0.2. When I have one line and missing data, the tooltip shows x-label. Does anyone know how to disable the tooltip when the point value is null? Thanks very much!
greenTea2Codes
  • 133
  • 1
  • 1
  • 9
6
votes
2 answers

How to continuously update Y-axis values in MPAndroidChart

I want my axis in LineChart to adjust it's maximum and minimum values real-time. Functions like resetAxisMaxValue() and resetAxisMinValue() work well when new data's Y-value is increasing(both positive and negative), however, once the signal gets…
Alex Bailo
  • 197
  • 2
  • 15
6
votes
2 answers

Add a second Y-axis for Linechart in Chart.js?

I would like to add a second Y-axis on a linechart, possibly on the right side of the canvas. I tried to use Chart.js taken from https://github.com/Wikunia/Chart.js/tree/Double-Y-Axis in which LineDoubleY is defined. But: I cannot see the example…
Sabba
  • 257
  • 2
  • 6
  • 17
6
votes
2 answers

how to style style line chart points in c3js

I have a general c3js question. I'm trying to make the points in a C3JS line chart "hollow" (white fill, with a colored stroke), but am having a hard time figuring out how to do that. I've tried to add my own CSS, but it gets overwritten by the…
Shail Patel
  • 1,764
  • 5
  • 30
  • 46
6
votes
1 answer

C# Line Chart How to Create Vertical Line

I have a line chart. For example like this; I want to draw a vertical line that have a label at the bottom of it. And i want that label move through x points of chart with its vertical line when i drag it above those x points. I will get the y…
MOD
  • 1,070
  • 3
  • 19
  • 41
6
votes
2 answers

How do I achieve a multi-series line chart in Crystal Reports?

This relates to my How do I achieve a pivot report in Crystal Reports for Visual Studio? The data is the same, but they want a line chart as well. So, my data is {datetime}, {car-id}. The X -axis of the chart must show the hour of {datetime}, the Y…
ProfK
  • 49,207
  • 121
  • 399
  • 775
6
votes
2 answers

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 label and i want to hide 2,4,6,8,10,12 labels in…
Stack Overflow User
  • 4,052
  • 6
  • 29
  • 47
6
votes
1 answer

Create LineChart using openxml

I'm trying to create a new LineChart on excel worksheet, and i don't know how can i feel data on this chart and how to add values for each series. The following is what i try to do: static void Main(string[] args) { string docName =…
SomeCode.NET
  • 917
  • 15
  • 33
6
votes
2 answers

Line chart using ordinal x-axis with d3.js and nvd3.js

I am trying to make a line chart from a dataset while keeping X-axis categorical. For the observer it will look like a line chart with equidistant spacing between observations' X coordinates: ( 1 ------ 5 ------ 30 ------ 600) For now I am getting…
user1946927
  • 61
  • 1
  • 3
6
votes
1 answer

Use only custom label in X-axis in .NET chart

I'm making a .NET line graph in C# with an X-axis interval of weeks. For my project, I only want to be using the custom label, but for now I still want the gridlines. Does anyone know a way to hide the default X-Axis labels while still keeping the…
ijb109
  • 942
  • 1
  • 19
  • 30
6
votes
1 answer

JavaFX 2.x : How to move Line, Grid and X Ticks together?

The code below plots a XYLineChart: by left mouse click and drag the plotted line can be translated left/right. import javafx.application.Application; import javafx.beans.property.SimpleDoubleProperty; import javafx.event.EventHandler; import…
Alberto acepsut
  • 1,972
  • 10
  • 41
  • 87