Please help me to understand how to approach styling the "AutoHide" component of the RadDocking component via Blend.
I have attached 2 screens shots.
The "BaseSS" attachment is the initial view of the Docking component styled up to this point via Blend, and the "AutoHideSS" attachment is the result of selecting "AutoHide" from the pin dropdown menu.
When creating the RadDockingStyle for the RadDocking TargetType / there are many references to telerik:Office_BlackTheme which seems to control the presentation for the AutoHideArea Target Type.
I need to know specifically how I should approach styling <ControlTemplate TargetType="{x:Type telerik:AutoHideArea}"> to match up with the styling I have already completed.
// I am assuming I'm correct in thinking this controls the display shown in "AutoHideSS.png"
When in Blend I do not get the ability to access this template in the "Edit Additional Templates" menu options.
I need to know how to get to this template and if it is not the correct one... if you could point me to the correct template I need to augment.
OR if I would be better served editing the Office_BlackTheme resources in the Telerik base files to match up the hex values or if that is even wise / feasible.
Thanks.
Dan
foreach
(Appointment app
in
this
.dataModel.Appointments)
{
app.Category = (Category)
this
.myCategoriesHT[
"CategoryID"
];
}
I get an exception when trying to drag a radpanel with the following layout:
<
telerik:RadDocking
x:Name
=
"radDocking"
Grid.Row
=
"1"
>
<
telerik:RadDocking.DocumentHost
>
<
telerik:RadPaneGroup
x:Name
=
"radPaneDocuments"
>
<
telerik:RadPane
x:Name
=
"radPane1"
Header
=
"Document 1"
>
<
TextBlock
TextWrapping
=
"Wrap"
Text
=
""
></
TextBlock
>
</
telerik:RadPane
>
<
telerik:RadPane
x:Name
=
"radPane2"
Header
=
"Document 2"
>
<
TextBlock
TextWrapping
=
"Wrap"
Text
=
""
></
TextBlock
>
</
telerik:RadPane
>
</
telerik:RadPaneGroup
>
</
telerik:RadDocking.DocumentHost
>
<
telerik:RadSplitContainer
x:Name
=
"radSplitContainer"
InitialPosition
=
"DockedLeft"
Width
=
"150"
>
<
telerik:RadPaneGroup
x:Name
=
"radGroupMenu"
>
<
telerik:RadPane
x:Name
=
"radPaneMenu"
Header
=
"Menu"
>
<
StackPanel
>
<
telerik:RadButton
x:Name
=
"btnCustomers"
Content
=
"Customers"
/>
<
telerik:RadButton
x:Name
=
"btnMachines"
Content
=
"Machines"
/>
</
StackPanel
>
</
telerik:RadPane
>
</
telerik:RadPaneGroup
>
</
telerik:RadSplitContainer
>
</
telerik:RadDocking
>
Hi Team,
I am showing charts in Listbox. I have placed RadChart Control in Itemplate. its not binding the ChartData and SeriesDefinition property. These property has value and preperty get is also called . But still its not showing series, saying "No data Series". On the other side, ChartTitle property is bound and showing chart title.
Please see this issue and send any sample.
Thanks in adavance..
Regards,
Nidhi
XAMl code attached
<ListBox Grid.Column=
"0"
ItemsSource=
"{Binding DrillDownChart}"
>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<toolKit:WrapPanel Orientation=
"Horizontal"
HorizontalAlignment=
"Center"
VerticalAlignment=
"Stretch"
>
</toolKit:WrapPanel>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate >
<DataTemplate>
<Grid Width=
"110"
Height=
"114"
>
<Grid.RowDefinitions>
<RowDefinition Height=
"*"
/>
<RowDefinition Height=
"Auto"
/>
</Grid.RowDefinitions>
<Border Grid.Row=
"0"
>
<telerik:RadChart ItemsSource=
"{Binding ChartData}"
SeriesMappings=
"{Binding ChartSeriesMappings}"
>
<telerik:RadChart.DefaultView>
<telerik:ChartDefaultView ChartLegendPosition=
"Right"
>
<telerik:ChartDefaultView.ChartTitle>
<telerik:ChartTitle Content=
"{Binding ChartTitle}"
/>
</telerik:ChartDefaultView.ChartTitle>
<telerik:ChartDefaultView.ChartArea>
<telerik:ChartArea LabelFormatBehavior=
"None"
SmartLabelsEnabled=
"True"
>
</telerik:ChartArea>
</telerik:ChartDefaultView.ChartArea>
<telerik:ChartDefaultView.ChartLegend>
<telerik:ChartLegend Name=
"ChartLegend"
LegendItemMarkerShape=
"Triangle"
/>
</telerik:ChartDefaultView.ChartLegend>
</telerik:ChartDefaultView>
</telerik:RadChart.DefaultView>
</telerik:RadChart>
</Border>
<TextBlock Text=
"{Binding ChartTitle}"
Grid.Row=
"1"
/>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>