Telerik Forums
UI for WPF Forum
1 answer
134 views
We have a problem that is actually a result of the backstage panel in the RibbonView, but I think the solution lies with the docking control.

In our application, the user can open a number of documents, all of which host WinForms controls. Unfortunately, when then backstage panel is opened on the RibbonView, the WinForms controls still show through. My understanding is that this is an issue with airspace.

My theory was that we could hide the documents when opening the backstage panel, but I'm unclear as to how we could do this. I was hoping I could set the visibility of the documenthost or panegroup, but this has no affect. Even setting the documentpane only hides the tab at the top.

Any help would be appreciated.

Thanks
Kalin
Telerik team
 answered on 23 May 2014
3 answers
99 views
Hi,
I've got a schedule view set up and uses some resource types to group appointments to particular categories.

I need to be able to show a single appointment that goes across all categories.

How can I achieve this?

Thanks,
Rob
Kalin
Telerik team
 answered on 23 May 2014
1 answer
89 views
I have a series consisting of an x-axis being DateTime and the Y-axis a numeric value. The datapoints are ranges and have a start and end date. Sometimes they have null values for the Y-axis, but still get an X-axis. I have attached a crude mockup of what I am trying to acheive.

The step-line chart comes the closest, but wondering if there was a chart type in the Telerik suite that could explicitly deal with ranges or if I am just thinking about this all wrong.

Thanks in advance.
Pavel R. Pavlov
Telerik team
 answered on 23 May 2014
1 answer
107 views
We are getting Ui Automation related error using ScatterLineSeries and BarSeries..
So I tried to create a class derived from BarSeries
public class CustomLineSeries : LineSeries
{
       protected override AutomationPeer OnCreateAutomationPeer()
       {    return null;   }
}
The issue is I cannot seem to get the series plotted when using derived BarSeries when I use the below code...
Issue seems to be with the Style tageting CustomBarSeries... Removing this style I can see the BarSeries in chart.
But the question is HOW do i set the Style of the derived BarSeries Class...

<telerik:RadCartesianChart.SeriesProvider>
<telerik:ChartSeriesProvider Source="{Binding Series}">
   <telerik:ChartSeriesProvider.SeriesDescriptors>
       <telerik:CategoricalSeriesDescriptor ItemsSourcePath="ChartsDataPoints" CategoryPath="X" ValuePath="Y" TypePath="SeriesType">
           <telerik:CategoricalSeriesDescriptor.Style>
               <Style TargetType="charts:CustomBarSeries">
                    <Setter Property="CombineMode" Value="None"/>
                    <Setter Property="DisplayName" Value="{Binding LegendTitle}"/>
               </Style>
           </telerik:CategoricalSeriesDescriptor.Style>
         </telerik:CategoricalSeriesDescriptor>
     </telerik:ChartSeriesProvider.SeriesDescriptors>
</telerik:ChartSeriesProvider>

In code behind I had Set SeriesType as typeof(CustomBarSeries)....

Have been breaking my head on this... any help is appreciated..
N
Top achievements
Rank 1
 answered on 22 May 2014
1 answer
366 views
Can I display the Items in a drop downlist for a RadComboBox through a Grouping mechanism and if only allow items from the same group to be selected. 

There is suppose to be a IsGrouping capability of a ComboBox does it work in RadComboBox?

unless none are selected, then any group can be selected?

George
Telerik team
 answered on 22 May 2014
9 answers
267 views

Hey,



We have a business object that implements IDataErrorInfo. The Grid validate just the visible cells. If a column that it is not visible (the user needs to scroll) has error, the entire row shows as a valid row. Just when to user scroll (horizontally) the row display as a invalid row.



see the attached screen shots.



Any idea how to fix this?



Thanks,

Mano



















Yoan
Telerik team
 answered on 22 May 2014
1 answer
131 views
Hi.

My chart is good work in function

But I have one problem.

The problem is processing velocity. (at Database Load & save Series list)

So, I want to make loading process.

I attached a file.

Martin Ivanov
Telerik team
 answered on 22 May 2014
5 answers
390 views
Hi,

I am using a Telerik tree. I want to drag a node from one parent on the tree to another. When I start dragging, I create a custom cursor with text to show what node I am dragging. When I do this, I see the cursor I want when I start dragging, but as I move my mouse, the cursor disappears and the default cursor (arrow with small square) appears. How can I disallow this cursor from overriding mine?

I know my cursor is there because if I deliberately fail to reset the cursor, I can see my custom cursor when I complete the drop.

How do I prevent the default arrow/square cursor from taking precedence over my cursor?

Thanks
Petar Mladenov
Telerik team
 answered on 22 May 2014
3 answers
213 views
PivotGrid is absolutely amazing. One issue we are running into, however, is the PivotFieldList displays all the properties of the objects in the collection. Is there a way, similar to RadGridView, to hide or prevent certain fields from appearing in the list? There is very little documentation on it. Is the only solution to create a DTO object that exposes only the properties you want?
Rosen Vladimirov
Telerik team
 answered on 22 May 2014
3 answers
554 views
I have searched and searched, but cannot figure out how to have each bar in each series be a different color from the bound palette per category.  Is this doable?  It appears so if you manually create each series, but my series are dynamic.  Attached is the markup for my chart control in its current state.

I also cannot get the smart labels to do anything.  I'm not sure if I have declare the strategy correctly or not.

<telerik:RadCartesianChart Palette="{Binding Palette}"
                                      telerik:ChartSeriesProvider.IsDynamicSeries="True"
                                      TooltipTemplate="{StaticResource BarChartTemplate}"
                                      HoverMode="FadeOtherSeries">             
               <telerik:RadCartesianChart.SmartLabelsStrategy>
                   <telerik:ChartSmartLabelsStrategy/>
               </telerik:RadCartesianChart.SmartLabelsStrategy>
               <telerik:RadCartesianChart.VerticalAxis>
                   <telerik:LinearAxis LabelFormat="N2"/>
               </telerik:RadCartesianChart.VerticalAxis>
               <telerik:RadCartesianChart.HorizontalAxis>
                   <telerik:CategoricalAxis />
               </telerik:RadCartesianChart.HorizontalAxis>
               <telerik:RadCartesianChart.SeriesProvider>
                   <telerik:ChartSeriesProvider Source="{Binding BarData}">
                       <telerik:ChartSeriesProvider.SeriesDescriptors>
                           <telerik:CategoricalSeriesDescriptor ItemsSourcePath="ChartData"
                                                                ValuePath="Value"
                                                                CategoryPath="Category">
                               <telerik:CategoricalSeriesDescriptor.Style>
                                   <Style TargetType="telerik:BarSeries">
                                       <Setter Property="CombineMode"
                                               Value='Cluster' />                                     
                                   </Style>
                               </telerik:CategoricalSeriesDescriptor.Style>
                           </telerik:CategoricalSeriesDescriptor>
                       </telerik:ChartSeriesProvider.SeriesDescriptors>
                   </telerik:ChartSeriesProvider>
               </telerik:RadCartesianChart.SeriesProvider>
           </telerik:RadCartesianChart>
Cameron
Top achievements
Rank 1
 answered on 21 May 2014
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
ProgressBar
Sparkline
LayoutControl
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
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Jesse
Top achievements
Rank 2
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Jesse
Top achievements
Rank 2
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?