Set BusyIndicator Header
5 Jun 20201 minute to read
SfBusyIndicator provides option to set the text that indicates the information related to loading. This can be done using Title
property.
SfBusyIndicator busyindicator = new SfBusyIndicator();
busyindicator.AnimationType = SFBusyIndicatorAnimationType.SFBusyIndicatorAnimationTypeBattery;
busyindicator.Title = (NSString)"Loading...";
BusyIndicator with title
FontFace
FontFace
can be used to define the font style and font size of the title that is displayed beneath the animation.
SfBusyIndicator busyindicator = new SfBusyIndicator();
busyindicator.AnimationType = SFBusyIndicatorAnimationType.SFBusyIndicatorAnimationTypeBattery;
busyindicator.Title = "Loading...";
busyindicator.FontFace = Typeface.create("Arial",Typeface.NONE);
BusyIndicator with font face