Telerik Forums
UI for WPF Forum
1 answer
102 views
Any way to hide the scroll bars on the RadChart?  i seen the thread on here where someone was trying to accomplish the same task, but the code doesn't work for me.  UISpy finds the sliders, but cant seem to locate them dynamically...   any help would be much appriciated. 

On a similar note, when i zoom with multiple line series, the Y axis seems to zoom, but the X axis stays the same...  any ideas?

Thanks,
Brian
Evgenia
Telerik team
 answered on 03 Mar 2011
5 answers
177 views
I am using Telerik controls with version 2010.3.1314.35.

In my WPF application , i need to have a treeview which accepts files/folders drag and dropped from desktop or any other windows folders.

Also while dragging over the treeview nodes i need to expand the nodes after a particular time delay.

Above two features are available with Telerik treeview?

If not please suggest any possible workaround solution.

Regards,
Vinodh
Vinodh
Top achievements
Rank 1
 answered on 03 Mar 2011
1 answer
71 views
Twice today, in visual studio a dialog popped up that there was a new (wpf) version available.
I clicked install, it downloaded and closed after an "Installed" message.

When I look at the telerik dlls in my external assemblies folder and in the Telerik folder in Program Files, the old versions are still there.
Did anything actually get upgraded?
Where are the new dll's?
Bill
Top achievements
Rank 1
 answered on 02 Mar 2011
1 answer
177 views
Hi
i am using wpf radchart, i would like to make some effects on the chart point mark when the mouse is over it (for example change its color or change its stroke thickness)
How can i achieve this ?

Thanks 
Sia
Telerik team
 answered on 02 Mar 2011
1 answer
217 views
I was wondering if the following features are possible with the Telerik line chart, and if so how to use it.

We use line charts to show a variable amount of data across a variable time domain. For instance, 3 years worth of patient temperature data. In some periods, 1 measurement per month can have been recorded. In another period, a measurement would have been done every 2 hours. The user looking at the graph might be interested in the 3-year trend, or the data of the last 48 hours. Exactly how much data each patient has and the timespan in which it occurs differs for each patient. The user is presented with the entire data set, and will do plenty of zooming and scrolling.

One problem we run into is how to present the x-axis labels. We need:
1. Dynamic x-axis text labels. When looking at a timespan of 3 years we do not want the time included in the text label. When looking at a timespan of hours, we do not want to repeat the date in each x-axis label.
2. Visual grouping of parts of the x-axis, so that we can for instance specify the date only once for multiple ticks that occur on that date (but at different times). Something like the attached (google) example. How the grouping occurs should be dynamic and depend on zoom level (i.e. days, weeks, months, years).

Preferably we would use a purely declarative method (we use MVVM and try to keep the code behind to a minimum), we want to avoid having to do this programmatically.
Are the described scenarios possible with the line chart? Is there documentation describing how to do this?
Evgenia
Telerik team
 answered on 02 Mar 2011
1 answer
85 views
I try to use the RadTreeview as a property in the class like this

 

public class ClassName: WebAdminPageBase

 

{

 

public RadTreeView trvGlobalNavFooter { get; set; }

 

...
}
But I get the error
Error 1 The type 'System.Web.UI.IScriptControl' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. D:\Projects\Henry's Work area\NIAMS.GlobalNav\NIAMS.GlobalNavAndFooterAdmnSettings\NIAMSGlobalNavFootersetng.cs 21 28 NIAMS.GlobalNavAndFooterAdmnSettings


When I use RadTreeview as variable it works lik this

 

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

 

Petar Mladenov
Telerik team
 answered on 02 Mar 2011
1 answer
253 views
I must surely be overlooking something obvious, but ..   how do you bind to the RadNumericUpDown control?  What property do you bind to?  Is there not some numeric or integer property that we can bind directly to?

I'm looking through the .chm help file but see nothing whatsoever that mentions this basic bit of information.

Perhaps I haven't had enough coffee today.

james hurst
Boyan
Telerik team
 answered on 02 Mar 2011
1 answer
134 views
Hi,

is it possible to to set the length of the timeslots to a custom period (for example to one week).
In RadScheduler i was able to do

<telerik:RadScheduler x:Name="scheduler" >
   <telerik:RadScheduler.TimelineViewDefinition >
      <telerik:TimelineViewDefinition CustomTimeSlotLength="1w" />                 
   </telerik:RadScheduler.TimelineViewDefinition>
</telerik:RadScheduler>

How can I achieve this in ScheduleView?

thanks in advance,

michael
Yana
Telerik team
 answered on 02 Mar 2011
2 answers
102 views
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}">

Ammaar
Top achievements
Rank 1
 answered on 02 Mar 2011
2 answers
124 views
Hello Telerik Team,

In my WPF application I'm using your Pyramid3D Chart. In that I want to show couple of things, like
1) I have to show the respective count as a tooltip on the hover of respective areas (in my case they are High, Medium and Low). I'm trying to achieving this by using below code, but didn't get proper output.

2) Also I want to show the chart according to the LegendLabel (like high show come first and then Medium and then Low). But it is currently showing in a random order (i.e in my case Medium priority is showing at the top and then High is showing) . Just want to know how we can manage this behavior.

For more clarification, please find the screenshot of the same as an attachment.

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;
        }
Vladimir Milev
Telerik team
 answered on 02 Mar 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?