Provide a way to highlight or identify the days with appointments in the year view mode. When in year view mode, those days with appointments, have different color for example.
Currently, just today is highlighted.
Do you have plans to develop controls for the UNO platform?
There are other companies that have already stated that they are working on it, for example,
https://www.syncfusion.com/blogs/post/collaboration-syncfusion-uno-platform.aspx
Hi Team,
If you set the PanOffset in XAML, it is not applied.
Does not work:
<telerikChart:RadCartesianChart x:Name="MyChart" Zoom="2, 1" PanOffset="-400,0" >
I would expect that the RadChartView renderer would be responsible for handling this after the control is loaded and the series/axis is rendered (see workaround).
If I subscribe to the ChartView's NativeControlLoaded event and wait approx 100ms before calling PanOffset, it will work.
e.g.
<telerikChart:RadCartesianChart x:Name="MyChart" Zoom="2, 1"
NativeControlLoaded="MyChart_OnNativeControlLoaded">
private async void MyChart_OnNativeControlLoaded(object sender, EventArgs e)
{
await Task.Delay(100);
MyChart.PanOffset = new Point(-400, 0);
}
The takeaway, and basis of this Bug Report, is that the control should internally perform this delay check and set the PanOffset.
This will enable MVVM scenarios because (I originally wanted to bind the PanOffset value from my view model).
Thank you,
Ramakant
A common scenario for the Chart is to have several Y-Axis, where some could be on the left, others could be on the right side of the Chart.
I have a Xamarin.Forms app, but I only am using it for UWP at the moment. The plan is to have Android and iOS later, but I am having issues with the RadNumericInput (Xamarin.Forms) and how the decimal key is handled.
Here is my XAML
<tkInput:RadNumericInput Grid.Row="4" Grid.Column="1" Value="{Binding Price, Mode=TwoWay}" StringFormat="{}{0:C2}" />
Right now, "Price" will default to 0. The UI will initially show $0.00 because of the StringFormat. That is working fine. When I put focus into the control, I only see 0, that is also fine. The issue is when I try to type a decimal. The value disappears and I see an issue in my Output that says -- Binding: can not be converted to type 'System.Int32'
Example steps:
**** Also, the Version of the Telerik controls I am using is -- 2019.2.603.360. The drop down below doesn't let me choose that version.
Settings:
CheckedColor="#fae1c2"
CheckedSymbolColor="Black"
Works fine on IOS and Android, but shows as white on UWP.
The Telerik UI toolbox window always open on top of all other windows and expanded. This is incredibly annoying especially as it displays 'I have no usable controls'.
There should be a setting to control this behaviour if it gets collapsed or removed then it should remember these settings, not ignore them and bring itself on top of useful windows like Solution Explorer etc every time I start VS.
Currently, there is no ItemTemplate for the SegmentedControl, therefore we need to use an IEnumerable<string>. Please add support for ItemTemplate, or DisplayMemeberBinding property, so that we can bind to an IEnumerable<T>.