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.