How to set axis margin in WinRT XAML Toolkit line chart?
问题 Answer Finally I solved my answer with this. ((LineSeries)MyChart.Series[0]).IndependentAxis = new LinearAxis { Minimum = 1, Maximum = 5, Orientation = AxisOrientation.X, Interval = 1, Margin = new Thickness(10, 0, 10, 0) }; ((LineSeries)MyChart.Series[0]).Clip = null; ((LineSeries)MyChart.Series[0]).Margin = new Thickness(10, 0, 10, 0); I am drawing line chart with help of WinRT XAML Toolkit. I am setting X axis manually, but when I set I am getting wierd start & end point. I tried to set