28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
define(function (require) {
|
|
|
|
var simpleLayoutHelper = require('./simpleLayoutHelper');
|
|
var simpleLayoutEdge = require('./simpleLayoutEdge');
|
|
return function (ecModel, api) {
|
|
ecModel.eachSeriesByType('graph', function (seriesModel) {
|
|
var layout = seriesModel.get('layout');
|
|
var coordSys = seriesModel.coordinateSystem;
|
|
if (coordSys && coordSys.type !== 'view') {
|
|
var data = seriesModel.getData();
|
|
data.each(coordSys.dimensions, function (x, y, idx) {
|
|
if (!isNaN(x) && !isNaN(y)) {
|
|
data.setItemLayout(idx, coordSys.dataToPoint([x, y]));
|
|
}
|
|
else {
|
|
// Also {Array.<number>}, not undefined to avoid if...else... statement
|
|
data.setItemLayout(idx, [NaN, NaN]);
|
|
}
|
|
});
|
|
|
|
simpleLayoutEdge(data.graph);
|
|
}
|
|
else if (!layout || layout === 'none') {
|
|
simpleLayoutHelper(seriesModel);
|
|
}
|
|
});
|
|
};
|
|
}); |