FixedCrossTableRowSeries class

From Catglobe Wiki
Jump to: navigation, search

FixedCrossTableRowSeries



A row series used in FixedCrossTable

Parent class

Inherits from object

Constructors

  • () - Construct new row series.

Methods

  • Empty Add(FixedCrossTableDataSeries series "Item to add.") - Add new data series.
  • Empty Clear() - Clear collection.
  • object this[] { get; }(int index "The key used to lookup the value.") - Get an item based on a index.
  • Empty RemoveAt(int index "Index to remove.") - Remove an element.
  • Empty this[] { set; }(int index "The key used to lookup the value.", object value "The value to set.") - Set an item based on a index to the value given.
  • (From object) string ToString() - The string representation of the object.

Properties

  • int Count { get; } - Number of elements.
  • string ObjectTypeName { get; } - The name of the type of object.
  • (From object) TypeInformation TypeInformation { get; } - Get information about this class.


Examples

FixedCrossTableDataItem dataItem = new FixedCrossTableDataItem();

dataItem.Value = 5;
dataItem.SignificanceZ = 10;

FixedCrossTableDataSeries dataserie = new FixedCrossTableDataSeries();

dataserie.Add(dataItem,dataItem);
dataserie.AbsoluteTotal.Value = 20;
dataserie.PercentageTotal.Value = 100;


FixedCrossTableRowSeries datarow = new FixedCrossTableRowSeries();
datarow.Add(dataserie);
datarow.Add(dataserie);

print(datarow[0][0].Value);
print(datarow[0][0].SignificanceZ);
print(datarow[0].AbsoluteTotal.Value);
print(datarow[0].PercentageTotal.Value);