Hi,
I used your document: https://docs.telerik.com/devtools/maui/controls/chart/chart-getting-started
And the chart not look ok, it get out of view in the bottom I want to see the name properly.
<ContentView.Content>
<Grid RowSpacing="25" RowDefinitions="auto, auto, auto,auto, auto,*" ColumnDefinitions="*">
<Label Grid.Row="3" Grid.Column="0" Text="Total Files Divided By Routes" HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand"/>
<telerikChart:RadCartesianChart Grid.Row="4" Grid.Column="0">
<telerikChart:RadCartesianChart.BindingContext>
<local:CategoricalDataViewModel />
</telerikChart:RadCartesianChart.BindingContext>
<telerikChart:RadCartesianChart.HorizontalAxis>
<telerikChart:CategoricalAxis PlotMode="OnTicks"
MajorTickInterval="2"
GapLength="0.5"/>
</telerikChart:RadCartesianChart.HorizontalAxis>
<telerikChart:RadCartesianChart.VerticalAxis>
<telerikChart:NumericalAxis LabelFitMode="MultiLine" />
</telerikChart:RadCartesianChart.VerticalAxis>
<telerikChart:RadCartesianChart.Series>
<telerikChart:BarSeries ValueBinding="Value"
CategoryBinding="Category"
ItemsSource="{Binding Data}" />
</telerikChart:RadCartesianChart.Series>
</telerikChart:RadCartesianChart>
</Grid>
</ContentView.Content>
Hi,
How to change he background of the selected TabViewItem?
Thanks,
Hi,
You have spelling mistake see:
Hi,
How I take the value of DateTimePicker in run time when I press on other button.
Thanks,
Hi,
Problem:When I lick on button outside the grid only on second click I get data? why?
var historyReportViewModel = new HistoryReportViewModel();
var historyReportResults = historyReportViewModel.CreateHistotyReport(resultsSelection, portalSelection, fromDateTimeSelection,
selectionTypeSelection, routeSelection, toDateTimeSelection);resultsDataGrid.ItemsSource = historyReportResults;
<telerikDataGrid:RadDataGrid Grid.Row="4" Grid.Column="0" x:Name="resultsDataGrid" Margin="10"
AutoGenerateColumns="False">
<telerikDataGrid:RadDataGrid.BindingContext>
<local:HistoryReportViewModel />
</telerikDataGrid:RadDataGrid.BindingContext>
<telerikDataGrid:RadDataGrid.Columns>
<telerikDataGrid:DataGridTextColumn PropertyName="Succeded" HeaderText="Succeded"/>
<telerikDataGrid:DataGridTextColumn PropertyName="Type" HeaderText="Type"/>
<telerikDataGrid:DataGridTextColumn PropertyName="EndTime" HeaderText="End Time"/>
<telerikDataGrid:DataGridTextColumn PropertyName="File" HeaderText="File"/>
<telerikDataGrid:DataGridTextColumn PropertyName="Route" HeaderText="Route"/>
<telerikDataGrid:DataGridTextColumn PropertyName="FailedFolder" HeaderText="FailedFolder"/>
<telerikDataGrid:DataGridTextColumn PropertyName="Portal" HeaderText="Portal"/>
</telerikDataGrid:RadDataGrid.Columns>
</telerikDataGrid:RadDataGrid>
Hi,
Hi,
When I use this code:
App.Current.MainPage = new NavigationPage(new MainPage());
I get space the blue one.
When I I do np space
public App()Hi,
I'm using VS is 17.2.0 Preview 1.0.
Maui Preview 13, Telerik nuget version is 0.5.0
Is there control FolderBrowserDialog that I can you un MAUI ?
Thanks in advance,