#r "nuget: Plotly.NET.CSharp"
#r "nuget: Plotly.NET.Interactive"
Loading extensions from Plotly.NET.Interactive.dll
using Plotly.NET.CSharp;
using static Plotly.NET.StyleParam;
Chart.Scatter<int, int, string>(
mode: Mode.Markers,
x: new int [] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
y: new int [] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
)