Good looking, animated, easy to customize, MVVM charts for WPF, WinForms under MIT Licence
beto-rodriguez on master
move to new site (compare)
beto-rodriguez on master
move to new site (compare)
Hi Beto (and anyone reading this)
In our little company we are really loving your tool and are proud and happy owners of a Geared License. Now we experience an issue with one of our customers where the Cartesian Chart does not render at all (it is really simply blank) - did anyone experience a similar issue
Our best guess so far is that they are running an LTSC version of Windows 10 on their machine (Version 1809) but we couldn't yet confirm this hunch.
Any help would of course be appreciated, thanks,
Dani
With LiveCharts I create an X/Y graph:
X-axis: Time
Y-axis: symmetrical values output from the zero axis to MinValue and MaxValue.
The min/max values are set as follows:
if (Math.Abs(newValueY) > maxValueY)
{
maxValueY = Math.Abs(newValueY);
MaxValue = maxValueY;
MinValue = -maxValueY;
}
My problem is that the grid is not displayed symmetrically. The zero axis is not displayed. Is there any way to configure LiveCharts to draw the grid up and down from zero axis instead of starting at MinValue?
Thanks for any hints! Markus
Hi, I'm fairly new to open source. I run a small company. I would like to use this library for commercial purposes. Is it free to use or should I buy the license to do so?
@beto-rodriguez could you answer his question? Also, I used this for an internal application in a company, not aimed for customer exposure. is that a problem to use freely?
SeriesCollectionBars.Clear();
SeriesCollectionBars.Add(
new ColumnSeries
{
Values = values,
Title = "Case count",
Configuration = ColorMapper,
DataLabels = true,
LabelPoint = chartPoint =>
string.Format("{0}", chartPoint.Y),
}
);