私はWPFでOxyPlotを使っていますが、いくつか問題があります。私は、アプリケーションを作成しようとしているとチャートを作成するOxyPlotを使用したい。プロット/データが表示されないことを除いてすべてが機能します。私は理由を理解できないようだ。ここでWPFでOxyPlotを作成する
は私のXAMLコードの一部です:
<UserControl x:Class="myNameSpace.MainPanel"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:app="clr-namespace:myNameSpace"
xmlns:oxy="http://oxyplot.org/wpf"
mc:Ignorable="d"
d:DesignHeight="1200"
d:DesignWidth="1920">
<UserControl.DataContext>
<local:MainViewModel/>
</UserControl.DataContext>
....
<oxy:Plot Title="{Binding Title}" Margin="760,689,606,228" Width="504" Height="283">
<oxy:Plot.Series>
<oxy:LineSeries ItemsSource="{Binding Points}"/>
</oxy:Plot.Series>
</oxy:Plot>
と私のMainViewPanelクラスは次のようになります。
public class MainViewModel
{
public MainViewModel()
{
this.Title = "Example 2";
this.Points = new List<DataPoint>
{
new DataPoint(0, 4),
new DataPoint(10, 13),
new DataPoint(20, 15),
new DataPoint(30, 16),
new DataPoint(40, 12),
new DataPoint(50, 12)
};
}
public string Title { get; private set; }
public IList<DataPoint> Points { get; private set; }
}
これは私が私のコード
を実行すると、チャートがどのように見えるかです
提供しているコードは問題なく動作します。これはちょっとしたチャンスですが、VMのPointsリストはOxyPlot.DataPointのリストであり、他のどこかのDataPointのリストではないと仮定します。 –
私の前のコメントを無視して、あなたの写真をもう一度見て、それはタイトルがバインドされていないように見えます。 –
xamlで参照されているMainViewModelが正しいタイプであることを確認してください。定義されているローカル名前空間接頭辞が表示されません。 MainViewModelがAnnaEmilie名前空間にある場合は、local:MainViewModelをapp:MainViewModelに変更してください。 –