File "parallel.js"

Full Path: /home/cananyalcin/public_html/vendors/echarts/src/component/parallel.js
File size: 392 bytes
MIME-type: text/plain
Charset: utf-8

define(function(require) {

    require('../coord/parallel/parallelCreator');
    require('../coord/parallel/ParallelModel');
    require('./parallelAxis');

    var echarts = require('../echarts');

    // Parallel view
    echarts.extendComponentView({
        type: 'parallel'
    });

    echarts.registerPreprocessor(
        require('../coord/parallel/parallelPreprocessor')
    );

});