DragDropManager.AddDragInitializeHandler(TheRadDiagramToolbox, OnDragInitialize);
However, my DropHandler is firing
DragDropManager.AddDropHandler(this.Diagram, OnDiagramDrop);
2 questions -
1. Am i supposed to use the DragInitializedHandler on the RadDiagramToolbox
2. Is there anyway to grab the RadDigramShape payload right from the DropHandler without having to call the DragInitializeHandler
Thank You Very Much
FF
I'm trying to create a data template for items on a VisualizationLayer. For each item I'd like to show:
a) a shape whose points are in geographic units (i.e. the shape grows/shrinks as the map zoom changes (I've been trying to use MapShapeView types)
b) an ellipse of fixed size i.e. whose screen size remains the same as the map is zoomed in/out.
c) an image element (which again keeps the same size as the map is zoomed)
d) a textblock (which again keeps the same size as the map is zoomed)
All four elements should be bound to properties in the item's view model.
Is this possible with a VisualizationLayer? I've been able to do it with an InformationLayer.
Thanks
Pete
Does anyone know how to make the RadMenuItem PopUp open to the bottom right?
DropDownPlacement has Bottom, Top, Right, Left and Auto. But I cannot find a way to move the popup to the bottom right.
Hello,
How can I get the value of a group of RadioButtons ?
How can I set the default value of each group ?
The following code for example contains 2 groups:
<StackPanel>
<telerik:RadRadioButton Content="Item 1.1" />
<telerik:RadRadioButton Content="Item 1.2" />
</StackPanel>
<StackPanel>
<telerik:RadRadioButton Content="Item 2.1" />
<telerik:RadRadioButton Content="Item 2.2" />
</StackPanel>
Thank you,
Z.V
Hi,
I'm trying to use radmap to show a number of objects that move (between updates, approximately every 500ms). I'm showing the track the object has taken as a number of line segments (currently using PolyLineView). I've bound the layer item source to a collection containing the object (as an image) and a line segment showing for each track update. Can you advise on the best way to cause the tracks to be redrawn when a track update happens? I've been using an observable collection but the layer does not seem to update in response to the addition of a new line segment view model.
The other problem I have is that I'd like to draw each line segment as a colored line with a shadow effect - I'm not sure if this is possible?
I'd also like each line segment to show a tooltip when the user hovers over the line segment - is there some way I can increase the size of the area the mouse has to be over to show the tooltip (i.e. if the line thickness is small the user have to position the mouse very accurately.
Thanks for any suggestions received,
Pete
Hi,
I have code written by
fellow developer who used RadPanelBar to visualize hierarchical datasouce. He
wrote (imho too many) templates. Now I am looking how to enable / disable item
- I would say functionality like this in TreeViewItem
http://docs.telerik.com/devtools/wpf/controls/radtreeview/features/treeview-item/feautres-treeviewitem-enable-disable-items
I managed to block action
in code, nonetheless I am looking how to set it so that it looks nice visually (and
I wish to avoid to write xaml code in order just to disable item;))
Best regards,