or
public class ClassName: WebAdminPageBase
{
public RadTreeView trvGlobalNavFooter { get; set; }
...
protected override void OnLoad(EventArgs e)
{
RadTreeView trvGlobalNavFooter = new RadTreeView();
...
}
The problem is that I need to use RadTreeview as a property. How Can I fix this problem??
Thx
HANK
<
telerik:RadScheduler
x:Name
=
"scheduler"
>
<
telerik:RadScheduler.TimelineViewDefinition
>
<
telerik:TimelineViewDefinition
CustomTimeSlotLength
=
"1w"
/>
</
telerik:RadScheduler.TimelineViewDefinition
>
</
telerik:RadScheduler
>
Hi,
I have the same issue as highlighted in this thread: http://www.telerik.com/community/forums/wpf/docking/control-contextmenu-in-a-docking-radpane-does-not-show-up.aspx
However, setting the ContextMenuItemTemplate to null as shown in the documentation does not work
<
telerik:RadPane
ContextMenuTemplate
=
"{x:Null}"
>
is showing at the top and then High is showing) . Just want to know how we can manage this behavior.void LoadGraphData(IEnumerable<
CasePriorityCount
> data)
{
SeriesMappingCollection mappingCollection = new SeriesMappingCollection();
SeriesMapping mapping = new SeriesMapping();
mapping.ItemMappings.Add(new ItemMapping("Count", DataPointMember.YValue));
mapping.ItemMappings.Add(new ItemMapping("Priority", DataPointMember.LegendLabel));
mapping.ItemMappings.Add(new ItemMapping("Count",DataPointMember.Tooltip));
mapping.SeriesDefinition = new Pyramid3DSeriesDefinition();
List<
CaseByPriority
> caseByPriorityData = new List<
CaseByPriority
>();
foreach (CasePriorityCount caseByPriorityCount in data)
{
caseByPriorityData.Add(new CaseByPriority(caseByPriorityCount.Count, caseByPriorityCount.Priority));
}
mappingCollection.Add(mapping);
ViewModel.SeriesMappingsData = mappingCollection;
ViewModel.Data = caseByPriorityData;
}