ReportingServicesRunChart Method |
Executes and retrieves a
Chart that is contained within the specified DataMiner template.
Namespace:
FactoryLogix.xTend.Analytics
Assembly:
FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.245.0.0 (8.245.0.0)
Syntax public FileContent RunChart(
Guid sessionId,
Guid templateId,
Guid chartId,
ChartFormat format,
ParameterValue[] parameters,
int width,
int height
)
Public Function RunChart (
sessionId As Guid,
templateId As Guid,
chartId As Guid,
format As ChartFormat,
parameters As ParameterValue(),
width As Integer,
height As Integer
) As FileContent
public:
virtual FileContent^ RunChart(
Guid sessionId,
Guid templateId,
Guid chartId,
ChartFormat format,
array<ParameterValue^>^ parameters,
int width,
int height
) sealed
abstract RunChart :
sessionId : Guid *
templateId : Guid *
chartId : Guid *
format : ChartFormat *
parameters : ParameterValue[] *
width : int *
height : int -> FileContent
override RunChart :
sessionId : Guid *
templateId : Guid *
chartId : Guid *
format : ChartFormat *
parameters : ParameterValue[] *
width : int *
height : int -> FileContent
Parameters
- sessionId
- Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method. - templateId
- Type: SystemGuid
The Id of the DataMiner template. - chartId
- Type: SystemGuid
The Id of the Chart to be executed. - format
- Type: FactoryLogix.xTend.DataObjectsChartFormat
An enumerated value indicating the output format for the chart. - parameters
- Type: FactoryLogix.xTend.DataObjectsParameterValue
A list of ParameterValue objects representing the data filters
and parameters to be used by the query. - width
- Type: SystemInt32
For raster image type output formats, the pixel width of the output. Ignored for non-raster based output formats. - height
- Type: SystemInt32
For raster image type output formats, the pixel height of the output. Ignored for non-raster based output formats.
Return Value
Type:
FileContentA
FileContent object containing the formatted chart.
Exceptions See Also