WPF 图表工具包。将 ColumnDataPoint 中 Label 的内容绑定到 ViewModel DataPoint 属性
WPF Chart Toolkit. Bind Label's content in ColumnDataPoint to ViewModel DataPoint Property
我有一个扩展的 ObservableCollection
,它包含数据点和一些额外的信息
public class ExtendedCollection : ObservableCollection<KeyValuePair<string, KeyValuePair<string,int>>>
{
}
然后我还有一个 ViewModel 持有使用此 ExtendedCollection
的 ColumnSeries
private ExtendedCollection columnValues = new ExtendedCollection();
public ExtendedCollection ColumnValues
{
get
{
return columnValues;
}
set
{
columnValues = value;
PropChanged("ColumnValues");
}
}
最后,我尝试在每个数据点的列中模板化的标签上显示集合项的 Value.Key
<chartingToolkit:ColumnSeries Name="columnSeries" DependentValuePath="Value.Value" IndependentValuePath="Key" ItemsSource="{Binding ColumnValues}">
<chartingToolkit:ColumnSeries.DataPointStyle>
<Style TargetType="chartingToolkit:ColumnDataPoint">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:ColumnDataPoint">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label Grid.Row="0" Content="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type chartingToolkit:ColumnSeries}},Path=DataContext.ColumnValues.Value.Key, Mode=TwoWay}"></Label>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:ColumnSeries.DataPointStyle>
</chartingToolkit:ColumnSeries>
我为 Label
的 Content
尝试了许多不同的 Binding
,但 none 有效。我怎样才能把link的Content
变成ColumnDataPoint
的Value.Key
ExtendedCollection
属性 没有 Value
属性 但 DataContext
列有:
<Label Grid.Row="0" Content="{Binding Value.Key}"></Label>
我有一个扩展的 ObservableCollection
,它包含数据点和一些额外的信息
public class ExtendedCollection : ObservableCollection<KeyValuePair<string, KeyValuePair<string,int>>>
{
}
然后我还有一个 ViewModel 持有使用此 ExtendedCollection
ColumnSeries
private ExtendedCollection columnValues = new ExtendedCollection();
public ExtendedCollection ColumnValues
{
get
{
return columnValues;
}
set
{
columnValues = value;
PropChanged("ColumnValues");
}
}
最后,我尝试在每个数据点的列中模板化的标签上显示集合项的 Value.Key
<chartingToolkit:ColumnSeries Name="columnSeries" DependentValuePath="Value.Value" IndependentValuePath="Key" ItemsSource="{Binding ColumnValues}">
<chartingToolkit:ColumnSeries.DataPointStyle>
<Style TargetType="chartingToolkit:ColumnDataPoint">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="chartingToolkit:ColumnDataPoint">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label Grid.Row="0" Content="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type chartingToolkit:ColumnSeries}},Path=DataContext.ColumnValues.Value.Key, Mode=TwoWay}"></Label>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</chartingToolkit:ColumnSeries.DataPointStyle>
</chartingToolkit:ColumnSeries>
我为 Label
的 Content
尝试了许多不同的 Binding
,但 none 有效。我怎样才能把link的Content
变成ColumnDataPoint
Value.Key
ExtendedCollection
属性 没有 Value
属性 但 DataContext
列有:
<Label Grid.Row="0" Content="{Binding Value.Key}"></Label>