Skip to main content Skip to complementary content

Properties that can be rendered

This section describes the properties that can be rendered for a generic object.

The properties rendered depend on the properties that have been set in the generic object.

To render the properties of a generic object, you can use the GetLayout method.

Example

The goal is to create a sheet and a combo chart (the combo chart contains both a list object and a chart) and to render and evaluate their properties.

1. Create a sheet. The identifier of the sheet is SH01 (qId is SH01).

The client sends:

{ "jsonrpc": "2.0", "id": 2, "method": "CreateObject", "handle": 1, "params": [ { "title": "Sheet 1", "description": "Description of sheet 1", "qInfo": { "qId": "SH01", "qType": "sheet" }, "qChildListDef": { "qData": { "title": "/title", "description": "/description", "meta": "/meta", "order": "/order", "id": "/qInfo/qId", "type": "/qInfo/qType", "lb": "/qListObjectDef", "hc": "/qHyperCubeDef" } } } ] }

The engine returns:

{ "jsonrpc": "2.0", "id": 2, "result": { "qReturn": { "qType": "GenericObject", "qHandle": 2 }, "qInfo": { "qId": "SH01", "qType": "sheet" } }, "change": [ 2 ] }

The sheet is created and the handle is 2.

2. Get the properties of the sheet. The handle is 2.

The client sends:

{ "jsonrpc": "2.0", "id": 3, "method": "GetProperties", "handle": 2, "params": [] }

The engine returns:

{ "jsonrpc": "2.0", "id": 3, "result": { "qProp": { "qInfo": { "qId": "SH01", "qType": "sheet" }, "qMetaDef": {}, "title": "Sheet 1", "description": "Description of sheet 1", "qChildListDef": { "qData": { "title": "/title", "description": "/description", "meta": "/meta", "order": "/order", "id": "/qInfo/qId", "type": "/qInfo/qType", "lb": "/qListObjectDef", "hc": "/qHyperCubeDef" } } } } }

The GetProperties method returns the properties of the sheet.

3. Get the layout of the sheet. The handle is 2.

The client sends:

{ "jsonrpc": "2.0", "id": 4, "method": "GetLayout", "handle": 2, "params": [] }

The engine returns:

{ "jsonrpc": "2.0", "id": 4, "result": { "qLayout": { "qInfo": { "qId": "SH01", "qType": "sheet" }, "qMeta": {}, "qSelectionInfo": {}, "title": "Sheet 1", "description": "Description of sheet 1", "qChildList": { "qItems": [] } } } }

The GetLayout method evaluates the properties of the sheet. The sheet has no children (qChildList\qItems is empty).

4. Create a combo box in the sheet. The combo chart is composed of a list object (one dimension Country) and a hypercube (one dimension City and one measure Count(Holes)).

The client sends:

{ "jsonrpc": "2.0", "id": 5, "method": "CreateChild", "handle": 2, "params": [ { "title": "Title of the combo chart", "collapsed": { "qVAExpression": "Count(Country) > 25" }, "meta": { "data": "this is the data" }, "qInfo": { "qId": "CB01", "qType": "ComboChart" }, "qListObjectDef": { "qStateName": "$", "qLibraryId": "", "qDef": { "qGrouping": "N", "qFieldDefs": [ "Country" ], "qFieldLabels": [ "Dim1" ], "qSortCriterias": [ { "qSortByState": 0, "qSortByFrequency": 0, "qSortByNumeric": 0, "qSortByAscii": 0, "qSortByLoadOrder": 1, "qSortByExpression": 0, "qExpression": { "qv": "" } } ] }, "qInitialDataFetch": [ { "qTop": 0, "qLeft": 0, "qHeight": 3, "qWidth": 0 } ] }, "qHyperCubeDef": { "qStateName": "$", "qDimensions": [ { "qLibraryId": "", "qNullSuppression": false, "qIncludeElemValue": false, "qDef": { "qGrouping": "N", "qFieldDefs": [ "City" ], "qFieldLabels": [ "City label" ], "qSortCriterias": [ { "qSortByState": 0, "qSortByFrequency": 0, "qSortByNumeric": 0, "qSortByAscii": 0, "qSortByLoadOrder": 1, "qSortByExpression": 0, "qExpression": { "qv": "" } } ] } } ], "qMeasures": [ { "qLibraryId": "", "qDef": { "qLabel": "Total", "qDescription": "Chart HC Properties measure description", "qGrouping": "N", "qDef": "Count(Holes)" } } ], "qInitialDataFetch": [ { "qTop": 0, "qLeft": 0, "qHeight": 3, "qWidth": 2 } ] }, "description": "Description of the combo chart: list box and chart" } ] }

The engine returns:

{ "jsonrpc": "2.0", "id": 5, "result": { "qReturn": { "qType": "GenericObject", "qHandle": 3 }, "qInfo": { "qId": "CB01", "qType": "ComboChart" } }, "change": [ 2, 3 ] }

The combo box contains a list object and a chart and is contained in the sheet SH01. The list object has one dimension, Country, and the chart contains one dimension, City, and one measure, Count(Holes). The combo chart has several full dynamic properties: title, collapsed and meta. The handle of the combo chart is 3.

5. Get the layout of the sheet. The handle is 2.

The client sends:

{ "jsonrpc": "2.0", "id": 6, "method": "GetLayout", "handle": 2, "params": [] }

The engine returns:

{ "jsonrpc": "2.0", "id": 6, "result": { "qLayout": { "qInfo": { "qId": "SH01", "qType": "sheet" }, "qSelectionInfo": {}, "title": "Sheet 1", "description": "Description of sheet 1", "qChildList": { "qItems": [ { "qInfo": { "qId": "CB01", "qType": "ComboChart" }, "qData": { "title": "Title of the combo chart", "description": "Description of the combo chart: list box and chart", "meta": { "data": "this is the data" }, "order": "", "id": "", "type": "", "lb": { "qStateName": "$", "qDef": { "qGrouping": "N", "qFieldDefs": [ "Country" ], "qFieldLabels": [ "Dim1" ], "qSortCriterias": [ { "qSortByLoadOrder": 1, "qExpression": {} } ], "qNumberPresentations": [], "qActiveField": 0 }, "qFrequencyMode": "N", "qInitialDataFetch": [ { "qLeft": 0, "qTop": 0, "qWidth": 0, "qHeight": 3 } ], "qExpressions": [] }, "hc": { "qStateName": "$", "qDimensions": [ { "qDef": { "qGrouping": "N", "qFieldDefs": [ "City" ], "qFieldLabels": [ "City label" ], "qSortCriterias": [ { "qSortByLoadOrder": 1, "qExpression": {} } ], "qNumberPresentations": [], "qActiveField": 0 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": {}, "qOtherLimit": {}, "qOtherLimitMode": "OTHER_GT_LIMIT", "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qOtherSortMode": "OTHER_SORT_DESCENDING", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": {} } } ], "qMeasures": [ { "qDef": { "qLabel": "Total", "qDescription": "Chart HC Properties measure description", "qTags": [], "qGrouping": "N", "qDef": "Count(Holes)", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0 }, "qAccumulate": 0, "qActiveExpression": 0, "qExpressions": [] }, "qSortBy": { "qExpression": {} }, "qAttributeExpressions": [] } ], "qInterColumnSortOrder": [], "qInitialDataFetch": [ { "qLeft": 0, "qTop": 0, "qWidth": 2, "qHeight": 3 } ], "qMode": "S", "qNoOfLeftDims": -1, "qMaxStackedCells": 5000 } } } ] } } } }

The GetLayout method evaluates the properties of the sheet. The sheet contains one child: the combo chart CB01.

6. Get the properties of the combo chart. The handle is 3.

The client sends:

{ "jsonrpc": "2.0", "id": 7, "method": "GetProperties", "handle": 3, "params": [] }

The engine returns:

{ "jsonrpc": "2.0", "id": 7, "result": { "qProp": { "qInfo": { "qId": "CB01", "qType": "ComboChart" }, "qMetaDef": {}, "title": "Title of the combo chart", "collapsed": { "qVAExpression": "Count(Country) > 25" }, "meta": { "data": "this is the data" }, "qListObjectDef": { "qStateName": "$", "qDef": { "qGrouping": "N", "qFieldDefs": [ "Country" ], "qFieldLabels": [ "Dim1" ], "qSortCriterias": [ { "qSortByLoadOrder": 1, "qExpression": {} } ], "qNumberPresentations": [], "qActiveField": 0 }, "qFrequencyMode": "N", "qInitialDataFetch": [ { "qLeft": 0, "qTop": 0, "qWidth": 0, "qHeight": 3 } ], "qExpressions": [] }, "qHyperCubeDef": { "qStateName": "$", "qDimensions": [ { "qDef": { "qGrouping": "N", "qFieldDefs": [ "City" ], "qFieldLabels": [ "City label" ], "qSortCriterias": [ { "qSortByLoadOrder": 1, "qExpression": {} } ], "qNumberPresentations": [], "qActiveField": 0 }, "qOtherTotalSpec": { "qOtherMode": "OTHER_OFF", "qOtherCounted": {}, "qOtherLimit": {}, "qOtherLimitMode": "OTHER_GT_LIMIT", "qForceBadValueKeeping": true, "qApplyEvenWhenPossiblyWrongResult": true, "qOtherSortMode": "OTHER_SORT_DESCENDING", "qTotalMode": "TOTAL_OFF", "qReferencedExpression": {} } } ], "qMeasures": [ { "qDef": { "qLabel": "Total", "qDescription": "Chart HC Properties measure description", "qTags": [], "qGrouping": "N", "qDef": "Count(Holes)", "qNumFormat": { "qType": "U", "qnDec": 10, "qUseThou": 0 }, "qAccumulate": 0, "qActiveExpression": 0, "qExpressions": [] }, "qSortBy": { "qExpression": {} }, "qAttributeExpressions": [] } ], "qInterColumnSortOrder": [], "qInitialDataFetch": [ { "qLeft": 0, "qTop": 0, "qWidth": 2, "qHeight": 3 } ], "qMode": "S", "qNoOfLeftDims": -1, "qMaxStackedCells": 5000 }, "description": "Description of the combo chart: list box and chart" } } }

The properties of the combo chart (including the full dynamic properties) are returned.

7. Get the layout of the combo chart. The handle is 3.

The client sends:

{ "jsonrpc": "2.0", "id": 8, "method": "GetLayout", "handle": 3, "params": [] }

The engine returns:

{ "jsonrpc": "2.0", "id": 8, "result": { "qLayout": { "qInfo": { "qId": "CB01", "qType": "ComboChart" }, "qSelectionInfo": {}, "title": "Title of the combo chart", "collapsed": { "qVAExpression": "Count(Country) > 25" }, "meta": { "data": "this is the data" }, "qListObject": { "qStateName": "$", "qSize": { "qcx": 1, "qcy": 22 }, "qDimensionInfo": { "qFallbackTitle": "Dim1", "qApprMaxGlyphCount": 14, "qCardinal": 22, "qSortIndicator": "A", "qGroupFallbackTitles": [ "Dim1" ], "qGroupPos": 0, "qStateCounts": { "qLocked": 0, "qSelected": 0, "qOption": 22, "qDeselected": 0, "qAlternative": 0, "qExcluded": 0, "qSelectedExcluded": 0, "qLockedExcluded": 0 }, "qTags": [ "$ascii", "$text" ], "qDimensionType": "D", "qGrouping": "N", "qNumFormat": { "qType": "R", "qnDec": 14, "qUseThou": 1, "qFmt": "##############", "qDec": ".", "qThou": "," }, "qIsAutoFormat": true, "qGroupFieldDefs": [ "Country" ] }, "qExpressions": [], "qDataPages": [ { "qMatrix": [ [ { "qText": "United States", "qNum": "NaN", "qElemNumber": 0, "qState": "O" } ], [ { "qText": "Denmark", "qNum": "NaN", "qElemNumber": 1, "qState": "O" } ], [ { "qText": "Spain", "qNum": "NaN", "qElemNumber": 2, "qState": "O" } ] ], "qTails": [], "qArea": { "qLeft": 0, "qTop": 0, "qWidth": 1, "qHeight": 3 } } ] }, "qHyperCube": { "qStateName": "$", "qSize": { "qcx": 2, "qcy": 7533 }, "qDimensionInfo": [ { "qFallbackTitle": "City label", "qApprMaxGlyphCount": 30, "qCardinal": 7532, "qSortIndicator": "A", "qGroupFallbackTitles": [ "City label" ], "qGroupPos": 0, "qStateCounts": { "qLocked": 0, "qSelected": 0, "qOption": 7532, "qDeselected": 0, "qAlternative": 0, "qExcluded": 0, "qSelectedExcluded": 0, "qLockedExcluded": 0 }, "qTags": [ "$text" ], "qDimensionType": "D", "qGrouping": "N", "qNumFormat": { "qType": "R", "qnDec": 14, "qUseThou": 1, "qFmt": "##############", "qDec": ".", "qThou": "," }, "qIsAutoFormat": true, "qGroupFieldDefs": [ "City" ] } ], "qMeasureInfo": [ { "qFallbackTitle": "Total", "qApprMaxGlyphCount": 5, "qCardinal": 44, "qSortIndicator": "N", "qNumFormat": { "qType": "I", "qnDec": 0, "qUseThou": 1, "qFmt": "###0", "qDec": "." }, "qMin": 0, "qMax": 74, "qIsAutoFormat": true, "qAttrExprInfo": [] } ], "qEffectiveInterColumnSortOrder": [ 0, 1 ], "qGrandTotalRow": [ { "qText": "17891", "qNum": 17891, "qElemNumber": -1, "qState": "X", "qIsTotalCell": true } ], "qDataPages": [ { "qMatrix": [ [ { "qText": "Addison", "qNum": "NaN", "qElemNumber": 0, "qState": "O" }, { "qText": "3", "qNum": 3, "qElemNumber": 0, "qState": "L" } ], [ { "qText": "Ivyland", "qNum": "NaN", "qElemNumber": 1, "qState": "O" }, { "qText": "1", "qNum": 1, "qElemNumber": 0, "qState": "L" } ], [ { "qText": "Hemet", "qNum": "NaN", "qElemNumber": 2, "qState": "O" }, { "qText": "6", "qNum": 6, "qElemNumber": 0, "qState": "L" } ] ], "qTails": [ { "qUp": 0, "qDown": 0 } ], "qArea": { "qLeft": 0, "qTop": 0, "qWidth": 2, "qHeight": 3 } } ], "qPivotDataPages": [], "qStackedDataPages": [], "qMode": "S", "qNoOfLeftDims": -1 }, "description": "Description of the combo chart: list box and chart" } } }

The full dynamic properties are returned. An initial set of data is displayed for both the list object and the chart according to what has been defined by qInitialDataFetch in step 4 (when creating the combo chart).

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!