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.
32 lines
726 B
32 lines
726 B
1 year ago
|
using LiveChartsCore.SkiaSharpView;
|
||
|
using LiveChartsCore;
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Data;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
using static DyeingComputer.UserClass.SqliteHelper;
|
||
|
using CommunityToolkit.Mvvm.ComponentModel;
|
||
|
|
||
|
namespace DyeingComputer.ViewModel
|
||
|
{
|
||
|
public class CurveDiagramViewModel : ObservableObject
|
||
|
{
|
||
|
|
||
|
public ISeries[] Series { get; set; } = new ISeries[]
|
||
|
{
|
||
|
new LineSeries<double>
|
||
|
{
|
||
|
Values = new double[] { 2, 1, 3, 5, 3, 4, 6 },
|
||
|
Fill = null
|
||
|
}
|
||
|
};
|
||
|
|
||
|
public CurveDiagramViewModel()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|