I'm trying to nest a Column Chart in the MapTip output of a FeatureLayer. The three ColumnSeries in the markup below are three ways I have tried to get this to work. No errors come up in debug, but the graph does not display any data or populate the axes. TEL_TOT, MOB_TOT, and INT_TOT refer to OutFields of the FeatureLayer. Can this even be done with out any code behind? Any help would be greatly appreciated.
<chartingToolkit:Chart Title="Communication">
<chartingToolkit:Chart.Series>
<chartingToolkit:ColumnSeries
Title="Telephone Users"
ItemsSource="{Binding Converter={StaticResource FeatureDictionaryConverter},
ConverterParameter=TEL_TOT, Mode=OneWay}"
IndependentValueBinding="{Binding Key}"
DependentValueBinding="{Binding Value}"/>
<chartingToolkit:ColumnSeries
Title="Mobile Users"
ItemsSource="{Binding Converter={StaticResource FeatureDictionaryConverter},
ConverterParameter=MOB_TOT, Mode=OneWay}"
IndependentValuePath="Key"
DependentValuePath="Value"/>
<chartingToolkit:ColumnSeries
Title="Internet Users"
ItemsSource="{Binding Converter={StaticResource FeatureDictionaryConverter},
ConverterParameter=MOB_TOT, Mode=OneWay}"
IndependentValueBinding="{Binding Key}"
DependentValueBinding="{Binding Value}" />
</chartingToolkit:Chart.Series>
</chartingToolkit:Chart>