Sha256: f67991eccd2e5dfdddf5421cd9b40fa5b5ea5faa0b81ea9c6fdfc5acd13e3cad
Contents?: true
Size: 1.67 KB
Versions: 3
Compression:
Stored size: 1.67 KB
Contents
/* * ! UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2018 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define([ './library', 'sap/ui/core/Item' ], function(library, Item) { "use strict"; /** * Constructor for a new P13nDimMeasureItem. * * @param {string} [sId] ID for the new control, generated automatically if no ID is given * @param {object} [mSettings] initial settings for the new control * @class Type for <code>columnsItems</code> aggregation in <code>P13nDimMeasurePanel</code> control. * @extends sap.ui.core.Item * @version 1.60.23 * @constructor * @author SAP SE * @public * @since 1.34.0 * @alias sap.m.P13nDimMeasureItem * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel */ var P13nDimMeasureItem = Item.extend("sap.m.P13nDimMeasureItem", /** @lends sap.m.P13nDimMeasureItem.prototype */ { metadata: { library: "sap.m", properties: { /** * Specifies the unique chart column key. In this context a column refers to dimensions or measures of a chart. */ columnKey: { type: "string" }, /** * Specifies the order of visible dimensions or measures of a chart. */ index: { type: "int", defaultValue: -1 }, /** * Specifies the visibility of dimensions or measures. */ visible: { type: "boolean" }, /** * Specifies the role of dimensions or measures. The role determines how dimensions and measures influence the chart. */ role: { type: "string" } } } }); return P13nDimMeasureItem; });
Version data entries
3 entries across 3 versions & 1 rubygems