or

#region
top
var top = new FacetValue()
{
Id = 1,
Freq =
"",
Values =
new FacetValue[]
{
new FacetValue
{
Id = 2,
Freq =
"",
Values =
new FacetValue[]
{
new FacetValue
{
Id = 3,
Freq =
"included",
Values =
new FacetValue[]
{
new FacetValue
{
Id = 4,
Freq =
"",
Values =
null
},
new FacetValue
{
Id = 5,
Freq =
"",
Values =
null
}
}
}
}
},
new FacetValue()
{
Id = 6,
Freq =
"",
Values =
new FacetValue[] {}
},
new FacetValue()
{
Id = 7,
Freq =
"excluded",
Values =
null
}
},
};
#endregion
| <telerikChart:RadChart |
| x:Name="SeasonsChart" |
| VerticalAlignment="Stretch" |
| HorizontalAlignment="Stretch" |
| UseDefaultLayout="False" |
| Background="Transparent"> |
| <Grid> |
| <Grid.RowDefinitions> |
| <RowDefinition Height="50"/> |
| <RowDefinition Height="*"/> |
| </Grid.RowDefinitions> |
| <Grid.ColumnDefinitions> |
| <ColumnDefinition Width="*"/> |
| <ColumnDefinition Width="Auto"/> |
| </Grid.ColumnDefinitions> |
| <Border x:Name="SeasonsImage" Grid.ColumnSpan="2" Grid.RowSpan="2" ></Border> |
| <telerikCharting:ChartTitle |
| Margin="20, 0, 0, 0" |
| Padding="5,5,5,5" |
| Foreground="GhostWhite" |
| Grid.Row="0" |
| Grid.Column="0" |
| HorizontalAlignment="Left" |
| VerticalAlignment="Bottom"/> |
| <telerikCharting:ChartArea |
| LegendName="SeasonsLegend" |
| Background="{StaticResource springTransparentBrush}" |
| Padding="20, 20, 0, 30" |
| Grid.Row="1" |
| Grid.Column="0"/> |
| <telerikCharting:ChartLegend |
| Header="Temperatures" |
| Visibility="Visible" |
| Background="{StaticResource springTransparentBrush}" |
| Grid.Column="1" |
| Grid.Row="1" |
| Padding="-10, 20, 20, 30"/> |
| <input:RadComboBox x:Name="SeasonCombo" |
| SelectionChanged="SeasonCombo_SelectionChanged" |
| HorizontalAlignment="Right" |
| VerticalAlignment="Bottom" |
| Margin="0, 0, 20, 0" |
| Grid.Row="0" |
| Grid.Column="0" |
| MaxWidth="150" |
| MaxHeight="30" |
| telerik:StyleManager.Theme="{StaticResource QsfTheme}"> |
| <input:RadComboBoxItem Content="Spring"></input:RadComboBoxItem> |
| <input:RadComboBoxItem Content="Summer"></input:RadComboBoxItem> |
| <input:RadComboBoxItem Content="Autumn"></input:RadComboBoxItem> |
| <input:RadComboBoxItem Content="Winter"></input:RadComboBoxItem> |
| </input:RadComboBox> |
| </Grid> |
| </telerikChart:RadChart> |