Questions tagged [lineseries]

55 questions
0
votes
1 answer

qml draw a Linechart from Qlist using a repeater

I want to draw a plot of sensor data that is saved in a QList. I know that getting the data up to the qml level works fine, because it correctly prints to console (see code). My question now is, how can I draw a LineChart out of this data? I tried a…
0
votes
1 answer

How to fill area between two line serie in tradingview api javascript

Hello I have been searching through the documentation and I didn't find any way to fill the area between two line series with a color I'm looking for something like the image below:
0
votes
0 answers

Can't set transparency of LineSeries{}

There is an application which contains ChartView{} with LineSeries{} inside it. I'm trying to set some transparency of the LineSeries{}. First approach is with usage of "opacity": LineSeries { id: lineId color: "red" opacity:…
0
votes
0 answers

Get x and y value when hovering on LinSeries React Vis

Trying to get the x and y values at mouse over position. d[0] } getY={ d => d[1] } width={300} height={300}>
paul blackmore
  • 191
  • 2
  • 13
0
votes
1 answer

How to use external data plot a multi lineseries chart

I am using amcharts4 plugin to plot a multi-lineseries graph. But the plotted points do not locate at the right position (Blue dot at the edge of y-axe) Here is the output chart that I get. (pls see the attached above) Not sure what had done…
user610983
  • 855
  • 2
  • 9
  • 14
0
votes
1 answer

In shared axis chart is it possible to hide the axis along with the series?

I am using LightningChartJS to create a chart. On clicking on the series description in the legend box the series disappears but the axis stays.Is it possible to hide the axis along with the series? My axis and series are as follows :- const axis1 =…
0
votes
1 answer

How can I hide and show LiveCharts series with dynamically created chart, and dynamic checkboxes?

In LiveCharts, I am creating a bunch of LineSeries with a foreach loop. How do I access a particular line series in this list? I'd like to show and hide them, with a checkbox in WPF. foreach (var item in ElementsList) { …
David Porter
  • 5
  • 1
  • 3
0
votes
1 answer

telerik wpf line series how to start line series chart from left to right for real time purpose

I am working on telerik RadCartesianChart, where I am binding Line series, I want to make its label (categorical) should be fixed, Now its moving with the value. And how to run this from left to right. See the attached image for more clarification.
Gaurav Badyal
  • 21
  • 1
  • 7
0
votes
0 answers

How to add/remove line series dynamically in androidplot?

I am using the androidplot for charts. I want to show/hide line series dynamically like the Scichartdoes where user can check or uncheck the legend and corresponding renderable line series will show or hide on graph.
0
votes
1 answer

Get the name of a QML ChartView LineSeries when the LineSeries is clicked

I created a program that reads stock data (time series) from the internet and displays it in a QML ChartView. After I add all the line series that I want, I can delete them by clicking a button. I would like to know if it is possible to delete the…
0
votes
1 answer

WPF Toolkit - Binding LineSeries in code behind

I've spent a few days trying to bind my data model to a lineseries. I works fine; however, I want to change the line color. I knew where to change the color, yet the chart and series would ignore my binding (was a SolidColorBrush). If I…
pccoder
  • 31
  • 7
0
votes
1 answer

Chart.js multiple series with same scale

I have a stacked bar chart with an unstacked line chart combo chart using Chart.js. I need the stacked bars and unstacked lines to appear on the same axis. It doesn't appear that I can do this, so I put them on different axes so that one could be…
Scrappy Doo
  • 3
  • 1
  • 6
0
votes
1 answer

OxyPlot find the selected LineSeries

I have a PlotModel with multiple LineSeries painted. What I'm looking for is a trick to select all the LineSeries which the point, detect by the MouseDown event, belongs to. I've done this: this.MouseDown +=…
ctt_it
  • 339
  • 1
  • 6
  • 22
0
votes
0 answers

Binding chart value with database in wpf

I want to create a LineSeries chart in WPF, i want to bind chart with two value from database "temperature" and "day" i think this below codes are accurate but doesn't work if there is any one could help me i will appreciate too much .. private void…
0
votes
1 answer

Touches on oxyplot linesseries don't work

I'm using oxyplot in my ios project to plot some graphs. I need to handle touches on the graph to add notes on it. I'm using the touch events but it's not working. Actually it works sometimes and other times it doesn't. It was working at the…