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
1 answer

Applying CSS to stack charts in FXML

I am trying to implement a set of stacked charts in FXML similar to this example. I'm fairly inexperienced and couldn't find whole examples of setting up CSS in FXML Controller. Trying to adapt code myself has resulted in either the…
Kyle
  • 3
  • 3
0
votes
1 answer

Line chart issues - plot looks "funny" (ggplot2)

I have a large dataframe (CO2_df) with many years for many countries, and tried to plot a graph with ggplot2. This graph will have 6 curves + an aggregate curve. However, my graph looks pretty "funny" and I have no idea why. The data looks like this…
Nordsee
  • 81
  • 1
  • 10
0
votes
1 answer

LineChart - Can I zoom in/out and pan from the code?

I'm using JfxUtils and LineChart. In some situations I want to give commands like zoom in/out and panning. Do any of you know a way to achieve this?
Jeredriq Demas
  • 616
  • 1
  • 9
  • 36
0
votes
2 answers

How Can I Draw Cells Inside MPAndroidChart

How can I draw cells inside LineChart I am able to display lines dynamically, but didn't find how to draw inner cells. I have followed these examples https://github.com/PhilJay/MPAndroidChart/issues/3751 MPAndroidChart- How to add cells inside grids…
Tufan
  • 2,789
  • 4
  • 34
  • 52
0
votes
0 answers

D3.js weird line chart

I am using this D3 tutorial https://bl.ocks.org/d3noob/4db972df5d7efc7d611255d1cc6f3c4f as the reference. The data is https://www.kaggle.com/START-UMD/gtd. Here's my code, var margin = {top: 20, right: 20, bottom: 30, left: 50}, width = 1400 -…
samandal
  • 87
  • 1
  • 12
0
votes
0 answers

JavaFX LineChart delta must be positive exception

For some reason even though my data list size is 0, JavaFX Application Thread gives IllegalArgumentException: delta must be positive at org.gillius.jfxutils.chart.StableTicksAxis.calculateTickSpacing line:195 etc. If I choose different element…
Jeredriq Demas
  • 616
  • 1
  • 9
  • 36
0
votes
3 answers

Google LineChart mysql with more lines

I'm trying to draw a Google Line Chart but I've some problem drawing the second line. I'm using data from my MySQL database which allow me to display the sum amount of sold pieces grouped by months in 2018. But I'd like to display the sum amount…
0
votes
1 answer

Adding dimension in tableau line chart

I am working on Tableau Line chart with dual axis. However, I want to add dimension in those line chart and arrange by alphabet. Please see the link here to download the packaged workbook. What I wanted to do is as follow: Can anyone advise…
Zephyr
  • 1,332
  • 2
  • 13
  • 31
0
votes
1 answer

how to show only each 15th x-labels in line chart chart.js in angular 6?

i have a line chart of chart js and it's like this: this.canvas = document.getElementById('myChart'); this.ctx = this.canvas.getContext('2d'); let myChart = new Chart(this.ctx, { type: 'line', data: { labels: ["1", "2", "3", "4", "5", "6",…
fariba.j
  • 1,737
  • 7
  • 23
  • 42
0
votes
1 answer

JavaFX lineChart can't do a geometric figure

I need to do a geometric figure in a LineChart like this : The problem is to connect 1 to 2 (in the descending way). For now, I use a series for the top of the figure and another one for the bottom, but it will be better to just use one series for…
Dread
  • 55
  • 9
0
votes
1 answer

Give a linechart XAxis academic month order

I have created a simple line chart where I compare the current years values to past years (could be an average or not). The issue is that as this is for UK Academic purposes I want the months to run from June through to June the following…
Byte Insight
  • 745
  • 1
  • 6
  • 17
0
votes
2 answers

Highcharts - Toggling the lines that run parallel to X axis for each value on Y axis?

How you toggle the lines that are parallel to X axis and appear for each value on Y axis? These ones -
upInCloud
  • 979
  • 2
  • 10
  • 29
0
votes
1 answer

How do I adjust what percentage of the graph is being used?

I'm going to apologize if this has already been asked, but I'm struggling to think of how to google this question: I'm currently using a LineChart to display data as it is received. I want to show at most 360 points on the graph. (6 minutes, of…
0
votes
0 answers

Customizing Graphs- Apache POI

I've generated a graph using Apache POI. I got the graphs correctly but in the border line, the corners are round. I need to change them to normal sharp corners. how can I do that? my code is as follows. (I've posted only the code for border line…
LSH94
  • 109
  • 1
  • 9
0
votes
0 answers

Is there a software for plotting trending code coverage data from Karma/Jasmine

I have an Angular app along with the standard Karma/Jasmine set up for unit testing. What I want is to feed the code coverage reports I get for each nightly build into a software that would create a trend of how my coverage is changing through time.…
Stan
  • 1,251
  • 1
  • 15
  • 24