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
0
votes
2 answers

Morris.Line js Can't Change Years to Months

I'm trying to create a line chart using the Morris.js source but I'm looking to get months put into the chart rather than the example years. Now the problem is when I change the years field the chart no longer works I've added the two examples below…
ben topper
  • 13
  • 1
  • 4
0
votes
1 answer

Strange behavior with MPAndroidChart ValueFormatter on XAxis

I have the following code: xAxis.setValueFormatter(new IAxisValueFormatter() { @Override public String getFormattedValue(float value, AxisBase axis) { int intValue = (int) value; int xVal = intValue / 120 / 12; if (xVal…
Pink Jazz
  • 784
  • 4
  • 13
  • 34
0
votes
1 answer

Scaling data to secondary axis in R (ggplot2)

I'm trying to build a line chart with ggplot2 in which I would like to have 2 lines, each adapted to a different axis. I'm trying the following code (where df4 is my data frame): p1 = ggplot(df4, mapping = aes(x=taxon, y=cov, group = 1, colour =…
0
votes
0 answers

Data Labels for Line Chart in python

I want to add data labels to the below coding somebody help me out! this is my output and i want to have my output image like this... this is what i want like labels over the points from matplotlib import pyplot as plt import numpy as np fig =…
0
votes
0 answers

Not able to get Tooltip in JavaFX LineChart

I am using Line chart in which I would like to get Tooltip on Mouse click. Here is the code. Please let me know what I have written wrong so that I am not able to get the tooltip. I don't have any exception. public class ChartPlot { static…
0
votes
1 answer

phpspreadsheet - lines without markers in chart

I am using phpspreadsheet to generate line charts. Almost everything is fine, but I don't get how to change plot style. Here is what I have: function createChart($sheet, $sheetname, $data) { $count = $data["custom"]["count"]; …
amorcian
  • 1
  • 4
0
votes
0 answers

Error in Tooltip for javaFX Linechart

I am using JavaFX LineChart. I am trying to set the tooltip on the linechart. I am getting error runtime error in event handle. What is wrong in the code? public class ChartPlot { static LineChart linechart; static double[]…
0
votes
1 answer

Reading the dataset from a javaFX linechart

I am using JavaFX Linechart in an application. I would like to read X and Y axis of the graph from the display. I mean from the graph. How can I do that? I would like to save the values in an ArrayList/ Array. Thanks in advance.
0
votes
1 answer

Turn row of data into Line Chart, PowerBi

I have mutiple rows of data which correspond to different companies and I need to be able to change the report based of the company title. However I have these rating averages by Month that I want to be able to put into a line chart but I can't seem…
Jherb
  • 43
  • 7
0
votes
1 answer

Multi-graph of trends in a single figure in python

I want to write a code in python (using pandas and matplotlib) to illustrate many trends in a single window. My initial dataset is something like this: NO. Year Position Year Position Year Position 1 2000 1 …
0
votes
0 answers

Need gradient color in Highstock Line chart + Angular 5.0

I have used Highstock line chart in my one of Angular 5.0 project. It looks like below screenshot. But I need gradient color in this chart like below screenshot. Can you please help me with this concern. Thanks in advance. Edited I am adding var…
Rav's Patel
  • 743
  • 6
  • 22
0
votes
2 answers

How to show values on x axis using mpchart library?

I have values like integer or date value but don't know where to use them in Android. So that when I zoom in the values remain at the same place and between the values there is an empty space. I want to show the values between them like [1 2 3] on…
0
votes
0 answers

How to reduce the width of the line on a LineChart

I've been attempting to plot a line chart, and right now I have around 2,000 data points I'd like to map. The problem is, with the line's thickness the data clarity gets rather fudged. I've already set the chart symbols to false. Is there any way…
Jayps
  • 35
  • 8
0
votes
1 answer

Why is my LineChart plotting data incorrectly?

I have been working on an excel Macro to graph some data on Chartsheet, but all of a sudden, it now graphs 7 different series instead of 2... The Code for the graph is: Public Sub GraphResults() Dim ws As Worksheet Dim LineGraph As Chart Set ws =…
Dives
  • 13
  • 3
0
votes
0 answers

Why does the line chart not work?

I'm trying to graph various small values in a line chart, but it's not working. It just makes a big line. setSeries function private void setSeries(){ XYChart.Series series = new XYChart.Series(); start = 0.01; for (int i = 0; i <…
Mario Tp
  • 53
  • 4
1 2 3
99
100