Questions tagged [livecharts]

LiveCharts is an open source .NET charting library supporting WPF, WinForms, WinUI, Xamarin, MAUI, Avalonia, Uno and more.

Live Charts is a .NET data visualization library.

Source code and examples can be found in Live-Charts and LiveCharts 2 repositories on GitHub.

383 questions
2
votes
1 answer

How to Add Chart Title in WPF LiveCharts

I have gone through the tutorials and examples in LiveChart's documentation (for WPF) but could not find any clue on how to add chart titles and subtitles. The ones available are axis title like the code below: How can I add a title and subtitle to…
Bloggrammer
  • 921
  • 8
  • 21
2
votes
1 answer

LiveCharts ColumnSeries fill color

I'm following this example from LiveChart's documentation. The code looks like this:
michasaucer
  • 4,562
  • 9
  • 40
  • 91
2
votes
0 answers

LiveCharts legend color doesn´t match series color, how can i fix it?

I am working with the opensource library LiveCharts in a wpf usercontrol. All of my visualizations are working as intended except for my boxplots. For some reason the color of the legend on my boxplots doesn´t match the actual series. In bare…
Thor Giversen
  • 153
  • 1
  • 9
2
votes
1 answer

Bind LiveCharts Pie Chart PieSeries Values to properties in the code behind

I have the following a class containing properties that get their data values from a database. public partial class Fruit { public double Apples { get; set; } public double Oranges { get; set; } public double Grapes…
Joe
  • 1,304
  • 1
  • 10
  • 22
2
votes
1 answer

Display only LineSeries Title on the ToolTip in LiveCharts

I'm creating a Line chart which includes more than 30 lines. Since it is difficult to identify the series by color I want to display a tooltip when the mouse pointer is on a series that displaying only series title. Is there any way to do that…
Gaya3
  • 155
  • 2
  • 16
2
votes
1 answer

Margin between different series ploted in Live Charts Wpf

I have plotted different series in basic column chart of live charts. but they are too close too each other. can i give some margin between them ? Also it doesn't show title of each series ? for (int i=0; i< _saleInvoiceList.Count;i++) { …
Hammas
  • 1,126
  • 1
  • 12
  • 37
2
votes
2 answers

Livecharts Geared throws unhandled ArgumentOutOfRangeException when zoomed to specific position

I have modified the scrollable example to use Rachel Lim's VMMV navigation example and to fetch data from our database. I have also moved some code-behind logic to VM. Everything works fine with LiveCharts.ChartValues, but when using…
kahko
  • 31
  • 5
2
votes
1 answer

Create a WPF C# chart with Live Chart

I Use Live Chart. SeriesCollection passes a Line Series in which Values = Chart Values. In xaml in Binding, I pass SeriesCollection. I understand that only y-points are transmitted (I do not change anything by default). How to transmit x points?…
Igor
  • 33
  • 1
  • 5
2
votes
1 answer

How to hide background grid lines in live chart?

I am using live charts for my winform application graph. In this I want to hide background grid lines based on user action. Is there any default option for that ? www.lvcharts.net
Aneez
  • 157
  • 1
  • 2
  • 14
2
votes
1 answer

Change Live Charts circles size

I want change size of all legend and tooltip circles in Live Charts. I searched all documentation but I don't know how it is called. How to change size of every circle in tooltip and legend? PieChart pieChart = new PieChart(); pieChart.Width =…
Miro
  • 125
  • 1
  • 11
2
votes
1 answer

How to Create a vertical line in livecharts

I am looking to create a vertical section in a livechart. I have found examples of this but the code used is now depreciated. This was my starting point: Found picture var axisSection = new AxisSection { FromValue = index, ToolTip = "dfsdf", …
Randy Ross
  • 23
  • 1
  • 4
2
votes
1 answer

LiveCharts - DependencyProperty For Fill/Stroke Binding Not Working

I'm having a problem with a DependencyProperty on a re-usable control I'm creating that plots a single line series using LiveCharts. The issue is that I have 3 dependency properties I want to configure; one is the Values for the chart, one is fill…
toombzie
  • 47
  • 8
2
votes
2 answers

Custom Tooltip on LineChart (lvChart)

I closely follow step-by-step lvChart Customizing Tooltips in trying to build a custom tooltip for LineChart points. But I get empty tooltip content. Other than using ObservableValue for ChartValues type, my code is near identical to that used in…
KMC
  • 19,548
  • 58
  • 164
  • 253
2
votes
2 answers

LiveCharts: Draw Axis Line

I'm using LiveCharts to draw a row diagram. Xaml-Code: