-According to the documentation it should only be possible to set two dimensions. Previously you were able to set three, where the third one was used for styling. This wasn't obvious to the user though. Now, the design field is set under Appearance -> Table format. Issue: DEB-156
16 lines
348 B
JavaScript
16 lines
348 B
JavaScript
import initializeTransformed from './initialize-transformed';
|
|
|
|
async function initialize ({ $element, layout, component, dataCube, designList }) {
|
|
const transformedProperties = await initializeTransformed({
|
|
$element,
|
|
component,
|
|
dataCube,
|
|
designList,
|
|
layout
|
|
});
|
|
|
|
return transformedProperties;
|
|
}
|
|
|
|
export default initialize;
|