r3-legacy/src/r3-graph-table.js

39 lines
646 B
JavaScript
Raw Normal View History

2019-10-06 21:11:18 +02:00
/**
* R3.Graph.Table
* @param apiComponent
* @constructor
*/
R3.Graph.Table = function(
apiComponent
) {
__RUNTIME_COMPONENT__;
R3.Graph.call(
this,
true
);
};
R3.Graph.Table.prototype = Object.create(R3.Component.prototype);
R3.Graph.Table.prototype.constructor = R3.Graph.Table;
/**
* Updates the instance with the current state
*/
R3.Graph.Table.prototype.createInstance = function() {
__CREATE_INSTANCE__;
};
/**
* Updates the instance with the current state
*/
R3.Graph.Table.prototype.updateInstance = function(property) {
R3.Graph.prototype.updateInstance.call(this, property);
};