Skip to content

Commit 7e0b58a

Browse files
committed
Fix test console app
1 parent 0a2eafe commit 7e0b58a

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

Diff for: tests/Plotly.NET.Tests.CSharpConsole/Program.cs

-11
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,5 @@ static void Main(string[] args)
3737
}
3838
).Show();
3939
}
40-
static void Main2(string[] args)
41-
{
42-
double[] x = new double[] { 1, 2 };
43-
double[] y = new double[] { 5, 10 };
44-
GenericChart.GenericChart chart = Chart2D.Chart.Point<double, double, string>(x: x, y: y);
45-
chart
46-
.WithTraceInfo("Hello from C#", ShowLegend: true)
47-
.WithXAxisStyle(title: Title.init("xAxis"))
48-
.WithYAxisStyle(title: Title.init("yAxis"))
49-
.Show();
50-
}
5140
}
5241
}

0 commit comments

Comments
 (0)