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
411 B

using System.Linq;
using LiveCharts.Geared;
namespace Geared.Winforms.FinancialSeries
{
public class FinancialSeriesViewModel
{
private DataProviderPoint[] _data;
public FinancialSeriesViewModel()
{
_data = DataProvider.Get.ToArray();
Values = _data.AsGearedValues();
Labels = _data.Select(x => x.DateTime.ToString("dd MMM yy")).ToArray();