Class RVDashboardDataSource
The base class representing a data source used in a dashboard, you can see RVDataSourceItem for more information about the relationship between data source and data source items.
Inheritance
Inherited Members
Namespace: Reveal.Sdk
Assembly: Reveal.UI.Sdk.dll
Syntax
public abstract class RVDashboardDataSource
Constructors
RVDashboardDataSource()
Declaration
public RVDashboardDataSource()
Properties
DefaultRefreshRate
Default value to use for "Refresh Data" setting for visualizations created using this item, expressed in minutes (e.g. 1440 = 1 day). A value of N means that whenever the visualization requests data, the engine will return data found in the cache if it's not older than N minutes -this means, if the engine fetched it from the datasource no more than N minutes before-. Set it to override the widget editor default behavior.
Declaration
public int? DefaultRefreshRate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Id
The ID of the data source.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Subtitle
The subtitle of the data source, if not null
will be displayed to users instead of connection information like host and database name.
Declaration
public string Subtitle { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Title
The title of the data source as displayed to users.
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |