Telerik Forums
UI for WPF Forum
3 answers
168 views
I have boolean values being used on the Y Axis and the chart control is converting them to 0 and 1. How do I get it to show "True" and "False" labels instead?
Yavor
Telerik team
 answered on 23 Aug 2011
4 answers
732 views
Hi,

I've a  radGridView which displays some "order". Each order has a status(represented by an enum.

I want to not display by default order with a Closed status.

So, I added this on my radgridview:

<telerik:RadGridView.FilterDescriptors>
    <telerik:FilterDescriptor Member="LastStatus.Status" Value="Closed" Operator="IsNotEqualTo"/>
</telerik:RadGridView.FilterDescriptors>

This is actually working, but I've a problem, this filter isn't displayed in any filter list.

Even if I've a column with the exact same DataMember:
<telerik:GridViewDataColumn Header="Current Status" DataMemberBinding="{Binding LastStatus.Status}" />

How can I manage this??? Xaml side of course

I saw this: http://www.telerik.com/help/silverlight/radgridview-filtering-column-filter-descriptors.html
But I can't specify a GridViewDataColumn in the xaml of the FilterDescriptor
Julien
Top achievements
Rank 1
 answered on 23 Aug 2011
1 answer
63 views
Hello, I'd like my Headers in RadGridView to look something like this: http://www4.picturepush.com/photo/a/6379597/img/6379597.png Can you please help? I'm quite new to your tools.

Kind Regards,

Y
Maya
Telerik team
 answered on 23 Aug 2011
2 answers
156 views
Hi Telerik,

I want to hide all the appointments in RadScheduleView Month View. How to do this?
It also should be fine if appointments are not loaded in RadScheduleView Monthview at all.
jeya
Top achievements
Rank 1
 answered on 23 Aug 2011
1 answer
192 views
Hello everyone,

I would like to ask for a help on a MVVM related issue.

We use a telerik RadRibbonView with Tabs in Silverlight and everything works. For some reasons we need to convert our base shell to WPF also. With this came up an issue - when in shell is used a viewmodel, then the bindings in the ribbontab views to ribbontab viewmodels fail to work.

As you can simulate in the attached project, it is enough to comment out the section for shell viewmodel import, and it gets to work. How to enable shellviewmodel and preserve the bindings of ribbontab views to their viewmodels working?

http://www.filedropper.com/radribbontestwpfapplication

Any help would be graceful.

Thank you.
Tina Stancheva
Telerik team
 answered on 22 Aug 2011
1 answer
258 views
Dear everybody,

is it possible to re-style the border of a column once it is frozen? I'd like to get rid of the shadow then.

Can somebody explain how to do this?

Thanks
Dimitrina
Telerik team
 answered on 22 Aug 2011
1 answer
83 views
Hi,
I could not drag and drop the appointments in the RadScheduleView. I dont know what went wrong. I am using PRISM 4.0. I have two regions. The view which has the scheduleview is loaded in these regions. I can do drag and drop in the view which is loaded in the first region. The same view is loaded in the second region, but drag and drop is disabled. I tried with different view, the same thing happens.
Any HELP?
Valeri Hristov
Telerik team
 answered on 22 Aug 2011
1 answer
91 views
Is there any way to hover over map shapes and change the color of the underlying (state, country,...)?

Thanks for a quick answer.
Andrey
Telerik team
 answered on 22 Aug 2011
1 answer
346 views
I have looked through all of the samples, including the samples on this forum and I am just not understanding how to bind a collection of custom push pins using the MVVM paradigm. I understand the InformationLayer is an items control, so I should be able to bind anything to it, but it's just not working for me.

Consider a simple class like the following:

public class Address
{
    public Location Location { get; set; }
    public string Address { get; set; }
    public string City { get; set; }
    public string State { get; set; }
    public string Zip { get; set; }
}

I'd like to be able to add a pin to the map for each Address. My intent is to eventually provide hover functionality so that a popup displays information over the pin when the mouse hovers over it, but I haven't gotten the pins to display. In the view model, I have a property of type ObservableCollection<Address>. I then bind to the address collection in the XAML with the following:

<telerik:InformationLayer ItemsSource="{Binding AddressPins}" />

I understand I will have to create an item template in order to achieve the hover affect I'm looking for, but it is my understanding the above code should render pins for each location specified by an Address object. The following is an ICommand that handles the DragDropManager's OnDropInfo event (I'm dragging tasks onto the map).

if (e.Options.Status == DragStatus.DropComplete)
{
    RadMap map = (RadMap)e.Options.Destination;
    Location dropCursorLocation = Location.GetCoordinates(map, e.Options.RelativeDragPoint);
    Entity.Task task = (Entity.Task)e.Options.Payload;
    Address pin = new Address
        {
            Address = task.Address,
            City = task.City,
            Location = dropCursorLocation,
            State = task.State
            Zip = task.Zip
        };
 
    System.Diagnostics.Debug.WriteLine("Dropped at Latitude: {0} - Longitude: {1}", dropCursorLocation.Latitude, dropCursorLocation.Longitude);
 
    // Add pin to the map
    this.AddressPins.Add(pin);
 
    e.Handled = true;
}

If somebody could please further clarify how to handle this, I would greatly appreciate it. It should be noted I also tried having the Address class extend the Pushpin class, without success. I didn't think this was necessary, however, because the WPF samples were simple POCO's.
Andrey
Telerik team
 answered on 22 Aug 2011
1 answer
176 views
Hi,
How can I show legend on chart in RadChart?
I mean insted of showing values on pie ,show the title of that part.
for example if a pie has 3parts with values 10,20 and 30, it draws based on the values but show title of values instead of values itself
Peshito
Telerik team
 answered on 22 Aug 2011
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
LayoutControl
ProgressBar
Sparkline
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
SplashScreen
Callout
Rating
Accessibility
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?