ig.OlapResultAxis

ig.OlapResultAxis_image
$.ig.OlapResult にある軸を表します。

コード サンプル

<!doctype html>
<html>
<head>
    <!-- jQuery Core -->
    <script src="js/jquery.js" type="text/javascript"></script>
    <!-- jQuery UI -->
    <script src="js/jquery-ui.js" type="text/javascript"></script>
    <!-- Infragistics Combined Scripts -->
    <script src="js/infragistics.core.js" type="text/javascript"></script>
    <script src="js/infragistics.lob.js" type="text/javascript"></script>
    <script type="text/javascript">
        $.support.cors = true;                
        $(function () {
            var dataSource = new $.ig.OlapXmlaDataSource({
                serverUrl: "http://sampledata.infragistics.com/olap/msmdpump.dll",
                catalog: "Adventure Works DW Standard Edition",
                cube: "Adventure Works",
                rows: "[Date].[Calendar]",
                measures: "[Measures].[Customer Count], [Measures].[Internet Order Count]"
            });
			
            dataSource.initialize().done(function(metadataTree) {
                // the result of the pre-loaded rows, columns, filters and measures is evaluated as part of initialization 
                var result = dataSource.result();
            
                // get column and row result axes of evaluated result
                var columnsAxis = result.axes().item(0);
                var rowsAxis = result.axes().item(1);
            });
        });            
    </script>
</head>
<body>
</body>
</html>    
    

関連トピック

依存関係

jquery-1.9.1.js
infragistics.util.js
  • options

    タイプ:
    object
    デフォルト:
    {}

    • tuples

      タイプ:
      array
      デフォルト:
      null
      要素タイプ:

      Optional="false" 軸になる $.ig.OlapResultTuple オブジェクトの配列。

    • tupleSize

      タイプ:
      number
      デフォルト:
      null

      Optional="false" 各タプルの $.ig.OlapResultAxisMember オブジェクトの数。

このコントロールにイベントはありません。
  • tuples

    .tuples( );
    返却型:
    array
    返却型の説明:
    $.ig.OlapResultTuple オブジェクトの配列。

    軸になる $.ig.OlapResultTuple オブジェクトの配列を返します。

  • tupleSize

    .tupleSize( );
    返却型:
    number
    返却型の説明:
    各タプルの $.ig.OlapResultAxisMember オブジェクトの数。

    各タプルの $.ig.OlapResultAxisMember オブジェクトの数を返します。

Copyright © 1996 - 2024 Infragistics, Inc. All rights reserved.