- Home
- Forum
- Xamarin.Forms
- Low performance in android with grid or chart
Low performance in android with grid or chart
Thanks for using Syncfusion products.
We have checked the reported SfDataGrid loading performance issue in Xamarin.Forms with SfDataGrid v15.3.0.33 and Xamarin.Forms v2.3.3.180 but SfDataGrid has been loaded faster with Image in GridColumn and loaded two SfDataGrid in single page. For Your reference, we have attached our sample in the below location, please refer it. Could you please do revert us by modifying our sample to replicate the issue or share your sample along with replication procedure, also share your SfDataGrid product version and Xamarin.Forms version and loading time? these details will be help us to proceed further.
Sample: http://www.syncfusion.com/downloads/support/directtrac/general/ze/XamarinForms-1489824326
Regarding the query about chart related issue
Could you please update the chart related issue details or code snippet to provide the further assistance on this?
Regards,
Parthiban S
are using android device?
hte problem is that i have few data loaded in grid, but from button pressed in menu page to new page navigation is very slow.
in ios is fast
hi,
thanks for your reply.
i think you are using a high performance phone.
try with a standard one.
i'm using only GridTextColumn with something this
<Setter Property="Foreground" Value="{Binding TvsY, Converter={StaticResource cellStyleConverter}}" />
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var amount = System.Convert.ToDouble(value);
if (amount < 0)
return Color.Red;
else
if (amount > 0)
return Color.Green;
else
return Color.Black;
}
also with graph is slow.
on android i can't see the animation of loader that i see on IOS.
- 5 Replies
- 3 Participants
-
LU Luca
- Oct 27, 2017 09:20 AM UTC
- Nov 6, 2017 12:03 PM UTC