Telerik Forums
UI for WPF Forum
3 answers
222 views

Hello,

Is there a way of customizing the appointment stack behavior when 2 or more items are overlapping on the timeline view?

Currently, the longest appointment will appear on top of the stack.

I would like to change this behavior so that the order of the stack is not calculated based on the length of the appointment but rather on a custom attribute or by the order in which the appointments are added.

 

 

Joel
Top achievements
Rank 1
Iron
 answered on 11 Jan 2019
4 answers
266 views

Hello,

I have read the post on modifying RadChart Candlestick to display the median and therefore be a Box Plot / Box Whisker. http://docs.telerik.com/devtools/wpf/controls/radchart/how-to/howto-create-scatter-errorbars-and-boxplot-series

I would like to achieve this same effect using RadChartView, as I would like the implicit styles that ChartView provide over Chart. 

Please could you provide guidance on how I should go about adding a median line to the candlesticks in RadChartView 

Many thanks in advance.

Martin Ivanov
Telerik team
 answered on 11 Jan 2019
2 answers
146 views

Finally upgrading my controls..

How in the 'world' do I convert my Schedule to ScheduleView?

I assume NO MORE Scheduler?

 

Help!!!!!!!!!!!!!!

 

 

   <telerik:RadScheduler Name="radSchedule" telerik:StyleManager.Theme="{StaticResource MyThemeInstance}"  AppointmentTemplate="{StaticResource AppointmentTemplateFLOM}"
                              TimeRulerHostStyle="{StaticResource TimeRulerHostStyleFLOM}"
                              TimeSlotTemplateSelector="{StaticResource TimeSlotTemplateSelector}" ViewMode="Week"  
                              TimelineHeaderFormat="{}{0:M-d-yyyy}"
                              AppointmentEditing="radSchedule_AppointmentEditing"                            
                              SelectedViewStartDateChanged="radSchedule_SelectedViewStartDateChanged" AllDayAreaHeight="0" AllowDrop="False" FontSize="14" IsEnabled="True" AppointmentAdding="radSchedule_AppointmentAdding" AppointmentDeleting="radSchedule_AppointmentDeleting" AppointmentCreating="radSchedule_AppointmentCreating" IsReadOnly="False">
            <telerikScheduler:RadScheduler.WeekViewDefinition>
                <telerikScheduler:WeekViewDefinition DayStartTime="0:00:00" VisibleDays="7" DayEndTime="23:00:00" TimeSlotLength="0:15:0" LargeChangeInterval="7d" />
            </telerikScheduler:RadScheduler.WeekViewDefinition>
            <telerikScheduler:RadScheduler.DayViewDefinition>
               <telerikScheduler:DayViewDefinition DayStartTime="0:00:00" DayEndTime="23:00:00" TimeSlotLength="0:15:0" />  <!--HEIGHT OF APPT -->
            </telerikScheduler:RadScheduler.DayViewDefinition>
          
             </telerik:RadScheduler>

Sullivan
Top achievements
Rank 1
 answered on 11 Jan 2019
3 answers
440 views

Hi,

I want my QueryableCollectionView Filter on event which invoke this function in my mainViewModel. Under is my attempt to filter this.

 

        private async Task OnContractGroupSelectionChanged()
        {
            this.ViewModelCategory.ViewModelCategory= new QueryableCollectionView(this.ViewModelCategory.CategoryData.Where(c => c.ID== this.SectionViewModle.ID));

        }

 

As you can see, I'm "newing" / creating a new instance of the QueryableCollectionView each time I choose a section in a grid.

How can I filter the QueryableCollectionView to only show items which is equal to the SectionID without having to new up an instance of the QueryableCollectionView? I can only choose one section at once, which means each time I choose a section, the QueryableCollectionView will only show the items with the same ID as the section.  I tried to add a FilterDescriptor in my MainViewModel which should update QueryableCollectionView  in my ViewModelCategory, but my program just hangs up when I try to do that.

Yoan
Telerik team
 answered on 10 Jan 2019
2 answers
297 views

Hi,

Is there any way of changing the background color on a RadDropDownButton when IsOpen = true, without needing to update the template?

KWUN WA
Top achievements
Rank 1
 answered on 09 Jan 2019
3 answers
193 views
I encountered strange behavior when inputting spaces into the Full Text Search field.  I input 'level 02' and i would not have expected the purple boxed rows in attached image to remain since they don't contain '(space)02'.  Is this a bug or intentional?  Thanks.
Dinko | Tech Support Engineer
Telerik team
 answered on 09 Jan 2019
1 answer
174 views

I need to set the color of the tableCell when the value is larger then 30,

In a xlsx file ,I set the rule , but  when it readed in spreadsheet, the value changed to 40,the color doesn't changed,  It doesn't seem to support it.

How can I solve this?

Tanya
Telerik team
 answered on 09 Jan 2019
1 answer
273 views

Hi all, 

How can i show text just above the line series in a RadCartesianChart?

                                <telerik:LineSeries />

I've attached a picture of what i'm trying to achieve.

Thanks.

Dinko | Tech Support Engineer
Telerik team
 answered on 09 Jan 2019
2 answers
273 views

Hi, i want to have also "MenuItem" in ToolBar besides normal Buttons. I achieved to do it, but the MenuItem is never opened. Is it necessary to do something more. Or is there any other short way to implement this behavior?

Here it is my xaml

      <telerik:RadToolBar x:Name="toolBar" FocusManager.IsFocusScope="False" HorizontalAlignment="Stretch" Margin="-1 -2 -1 0" BorderBrush="{StaticResource W Grey}" AutoHideOverflowButton="True">
        <telerik:RadButton Margin="2" Command="{Binding LoginCommand}" Content="Login" />
        <telerik:RadButton Margin="2" Command="{Binding LogoutCommand}" Content="Logout" />
        <telerik:RadMenuItem Margin="2">
          <telerik:RadMenuItem Margin="2"  Header="Online Change Compile" Command="{Binding OnlineChangeCompileCommand}">
            <Image Source="../Resources/Images/Toolbar/Icons.16x16.OnlineChangeCompile.png" Stretch="None" />
          </telerik:RadMenuItem>
          <telerik:RadMenuItem Margin="2" Header="Full Compile" Command="{Binding FullCompileCommand}">
            <Image Source="../Resources/Images/ToolBar/Icons.16x16.FullCompile.png" Stretch="None" />
          </telerik:RadMenuItem>
          <telerik:RadMenuItem Margin="2" Header="Full Deploy" Command="{Binding FullDeployCommand}" />
          <telerik:RadMenuItem Margin="2" Header="Online Change Deploy" Command="{Binding OnlineChangeDeployCommand}" />
          <telerik:RadMenuItem.Header>
            <StackPanel Orientation="Horizontal">
              <Image Margin="0" Source="../Resources/Images/Icons.16x16.OpenContextMenu.png" Stretch="None"  Height="16" Width="16" Visibility="{Binding OpenContextMenuVisibility}"/>
              <TextBlock Text="Action" />
            </StackPanel>
          </telerik:RadMenuItem.Header>
        </telerik:RadMenuItem>
      </telerik:RadToolBar>

 

Thanks, Ivo

Ivo
Top achievements
Rank 1
 answered on 09 Jan 2019
1 answer
106 views

Hello,

I have radTimeline with some items

I wanted to style the timeline and remove the top line as you can see in attached file(1) - I made a red border around this line

I tried to remove it by Blend, but the style that the blend created had an error

so I commented these lines

 <!--<telerik:TimelineScrollBar.Selection>
                                        <telerik:SelectionRange`1 End="1" Start="0"/>
                                    </telerik:TimelineScrollBar.Selection>-->

but the problem is that now there aren't items on the timeline as you can see in the second attached file (2)

 

Thanks

 

 

Martin Ivanov
Telerik team
 answered on 09 Jan 2019
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
DataPager
PersistenceFramework
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
NavigationView (Hamburger Menu)
Wizard
ExpressionEditor
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
Callout
PasswordBox
SplashScreen
Localization
Rating
Accessibility
CollectionNavigator
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?