We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cfa2cc commit 7713177Copy full SHA for 7713177
Source/Examples/Xamarin.Forms/SimpleDemo/SimpleDemo/App.xaml.cs
@@ -24,16 +24,18 @@ public App()
24
{
25
Model = new PlotModel
26
27
- Title = "OxyPlot in Xamarin Forms.",
+ Title = "OxyPlot in Xamarin.Forms",
28
Axes =
29
30
- new CategoryAxis {Position = AxisPosition.Bottom},
31
- new LinearAxis {Position = AxisPosition.Left, MinimumPadding = 0}
+ new CategoryAxis {Position = AxisPosition.Bottom, Key = "Y" },
+ new LinearAxis {Position = AxisPosition.Left, Key = "X", MinimumPadding = 0}
32
},
33
Series =
34
35
new BarSeries
36
37
+ XAxisKey = "X",
38
+ YAxisKey = "Y",
39
Items =
40
41
new BarItem {Value = 3},
0 commit comments