Mobile API Reference  MicroStrategy 2019
MetricHeader.h
Go to the documentation of this file.
1 //
2 // MetricHeader.h
3 // MSTRMobile
4 //
5 // Created by Amirali Charania on 2/19/10.
6 // Copyright 2010 MicroStrategy. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "Header.h"
11 
13 
17 @interface MSIMetricHeader : MSIHeader {
18 
19 }
20 
24 @property (nonatomic, strong, readonly) MSIMetric* metric;
25 
27 // Returns a metric header value for a category index (row) and series index (column).
28 //*/
29 //- (MSIMetricValue*) getDataForCategoryIndex: (NSInteger) categoryIndex seriesIndex:(NSInteger) seriesIndex;
30 
31 //- (MSIMetricValue*) dataForIndex:(NSUInteger)index;
32 
33 
35 // Calculates the maximum value for this metric in the report data.
36 //*/
37 //- (MSIMetricValue*) maximumMetricValue;
38 //
40 // Calculates the minimum value for this metric in the report data.
41 // */
42 //- (MSIMetricValue*) minimumMetricValue;
43 
47 //- (MSIMetricValue*) maximumMetricValue:(NSInteger) seriesIndex;
48 
52 //- (MSIMetricValue*) minimumMetricValue:(NSInteger) seriesIndex;
53 
54 @end
Definition: Header.h:12
Definition: Metric.h:14
Definition: MetricValue.h:12
Definition: MetricHeader.h:17