Questions tagged [lineseries]

55 questions
13
votes
3 answers

How to plot MULTIPLE LineSeries on an OxyPlot chart?

I apologize for asking so many OxyPlot questions, but I seem to be really struggling with using the OxyPlot chart control. My project is in WPF format so I was originally using a hosted WINFORMS chart and that worked like a charm and did absolutely…
Hooplator15
  • 1,540
  • 7
  • 31
  • 58
6
votes
1 answer

QML, create LineSeries at runtime

My goal is to have a QML ChartView with a variable number of LineSeries added to it during runtime. It is unknown how many LineSeries will need to be added until a user selects and loads a file with the data in it. I tried to create all of the…
roundtheworld
  • 2,651
  • 4
  • 32
  • 51
3
votes
1 answer

Is it possible to disable zoom in lightningChartJS chart?

In a chart created using LightningChartJS one can zoom in or zoom out of a particular section by dragging the mouse.Is it possible to disable the zoom functionality?
Suyash
  • 61
  • 3
3
votes
0 answers

set multiple color to single line lineMarkSeries Graph in react-vis

For My react Application, I need to create a line series graph with each point with a mark and color of the line should be changed when the x,y value progressing. I have used react-vis plugin for that and it will display the graph with nice curves…
Anoob K Bava
  • 598
  • 7
  • 19
3
votes
1 answer

Render ExtJs Line chart Square markers

I am trying to render ExtJS Line chart markers as square but the shape is always circle. Below is my code : renderer: function (sprite, record, attr, index, { return Ext.apply(attr, { type:…
abhishek1191
  • 145
  • 1
  • 10
3
votes
4 answers

How to plot several curves in MATLAB using handles

I am plotting data in MATLAB in real time. I want to use a handle. My problem is I do not know how to plot more than one Y-Data Curve. I found the following code It shows how to plot one set of YData. Has anybody got an idea to transform the code…
user1677716
  • 113
  • 1
  • 1
  • 11
2
votes
0 answers

How to add Custom GlyphSeries to LineSeries in visx XYChart?

I have implemented a Visx XYChart component with LineSeries. Codesandbox link here Requirement: I need to display a Glyph to indicate the start and end of the individual LinePath, and only if the LinePath starts or ends in between the start or end…
anoop chandran
  • 1,460
  • 5
  • 23
  • 42
2
votes
2 answers

How can I move cursor over chart at any place and not just on the series data points?

I have 2 point line series each having default cursor on them. The default cursor runs along the series data (points). What I want is a cursor that I can move anywhere in the chart not just on the series data.
2
votes
2 answers

OxyPlot - How to remove Axes

I would like to create an Oxyplot view without any axes visible. Could anyone tell me how to do so? To avoid missunderstandings, I never added any axes to the plotmodel. This code adds axes already. How to avoid that they are shown? C# plot…
user2799180
  • 719
  • 1
  • 11
  • 29
2
votes
1 answer

Mixed markers on the same Oxyplot line?

I have a plot where three lines are shown. Each line has a marker that identifies its type. The user can choose a type of line and click on the plot to create those lines. No problems this far. The problem is that i need one of those lines to have…
Natan
  • 1,867
  • 13
  • 24
2
votes
1 answer

How to add dynamically more line series into a line chart in wpf toolkit?

I'm trying to use wpf toolkit chart line and I need to have more then one line in the chart but i cant figer out how to do that I tried to look in here and Google but I always found an XAML code and I need to do it dynamically in c#. In the program…
SH.IN
  • 71
  • 2
  • 11
2
votes
0 answers

WPFToolkit charts in Itemscontrol

OK here is what I'm trying to do. I need multiple list charts in a single chart control. No problem that's easy enough using Sheog's answer on this post: https://stackoverflow.com/a/10604545/1836291 The problem is that I don't know how many charts i…
Bryan
  • 63
  • 1
  • 1
  • 7
1
vote
1 answer

How to add Lineseries + Candlesticks using Oxyplot

How to add a line series in a candlestick series? Like an indicator in stocks chart. When I add it it will just divide the chart. var pm = new PlotModel{Title="Chart"}; var timeSpanAxis1 = new DateTimeAxis { Position =…
Aziel
  • 36
  • 6
1
vote
1 answer

How to set startLocation for lineSeries in amCharts?

I am using amCharts for my final project of college. I am using column series and line series together to show data on the same chart. However I need to shift line series to the left but the columns. In current situation it looks like this: Both…
1
vote
1 answer

How to fix the position of LegendBox in the chart?

I am using LightningChartJS to create chart. Currently the position of legend box can be changed by dragging it. How can I fix the position of the legend box? ​ const legend = chart.addLegendBox() .setOrigin(UIOrigins.RightTop) .setPosition({ x:…
1
2 3 4