or
<telerik:ChartArea.AxisX> <telerik:AxisX x:Uid="telerik:AxisX_1"> <telerik:AxisX.AxisStyles> <telerik:AxisStyles ItemLabelStyle="{StaticResource StrategyMinItemLabelStyle}" /> </telerik:AxisX.AxisStyles> </telerik:AxisX> </telerik:ChartArea.AxisX>ategyMinItemLabelStyle style ?<telerik:RadTabControl x:Name="tabs" telerik:Theming.Theme="Windows7" BackgroundVisibility="Collapsed" TabStripPlacement="Left" TabOrientation="Vertical" DisplayMemberPath="Name" IsContentPreserved="True" ItemsSource="{Binding ReviewViewModels, UpdateSourceTrigger=PropertyChanged}" ContentTemplateSelector="{StaticResource ReviewTemplateSelector}" Align="Right" ItemContainerStyle="{StaticResource ReviewCategoryTabStyle}" SelectedIndex="{Binding SelectedIndex}" />Dispatcher.CurrentDispatcher.Invoke(DispatcherPriority.Send, new Action(() => { this.ReviewViewModels = new ObservableRangeCollection<object>(); //add the categories - this is the only place the items are added foreach (var cat in this.ReviewCategories) this.ReviewViewModels.Add(new ReviewCategoryViewModel(cat)); //add a new notes viewmodel this.ReviewViewModels.Add(new ReviewNotesViewModel()); //collection size shows three entries (two ReviewCategoryViewModel and one ReviewNotesViewModel), tabs occasionally show four at this point this.SelectedIndex = 0; this.IsBusy = false; }));<telerik:ChartLegend x:Name="legend"><telerik:ChartArea LegendName="legend"><telerik:ChartArea Legend="{Binding ElementName=legend}">
Hi,
I want to create special rows that have only one column (i.e. column span for a specific row).
So I created ControlTemplate with that single column, created a Style that change the template property to the new template and created RowStyleSelector that uses that template when needed. That worked but created a row that doesn't have the IndicatorPresenter at the start of the row.
You can see the picture..
Can I merge cells at the grid and stay with the default template?
Or how can I make sure that the IndicatorPresenter will appear with the same styles.
I would like to generate the charts without actually showing it (in a WPF application), and then save them to image.
However, when I run, I hit the InvalidOperationException
Telerik.Windows.Media.Imaging.FormatProviders.BmpFormatProvider
// grid.ItemSource = gridItemCollection (ObservableCollection<T>)
var itemsToUpdate = gridItemCollection.Where(item => item.Status.Equals(statusToChange)); foreach (var item in itemsToUpdate) item.Status = newStatus;