AdapterDataIsNoDataIndicatorDisabled Property |
Gets or sets a value specifying whether a no data overlay should be shown on this
Adapter when an empty data result is returned.
Namespace:
Dundas.BI.WebApi.Models
Assembly:
Dundas.BI.WebApiCore (in Dundas.BI.WebApiCore.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax [DataMemberAttribute(Name = "disableNoDataIndicator", EmitDefaultValue = false)]
public bool? IsNoDataIndicatorDisabled { get; set; }
<DataMemberAttribute(Name := "disableNoDataIndicator", EmitDefaultValue := false)>
Public Property IsNoDataIndicatorDisabled As Boolean?
Get
Set
public:
[DataMemberAttribute(Name = L"disableNoDataIndicator", EmitDefaultValue = false)]
property Nullable<bool> IsNoDataIndicatorDisabled {
Nullable<bool> get ();
void set (Nullable<bool> value);
}
[<DataMemberAttribute(Name = "disableNoDataIndicator", EmitDefaultValue = false)>]
member IsNoDataIndicatorDisabled : Nullable<bool> with get, set
Property Value
Type:
NullableBoolean to not show the indicator when there is no data;
to show an indicator; otherwise
if unspecified and the behavior is determined automatically.
See Also