You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
393 B

using System.ComponentModel;
using System.Linq;
using LiveCharts.Geared;
namespace Geared.Wpf.FianancialSeries
{
public class FinancialSeriesViewModel : INotifyPropertyChanged
{
private string[] _labels;
private DataProviderPoint[] _data;
private double _minAxisLimit;
private double _maxAxisLimit;
public FinancialSeriesViewModel()
{