export default function(plotOption) {
    return {
        ...plotOption,
        name: 'PlotRendComponent',
        render(...args){
            return plotOption.render.apply(this, args)
        }
    }
}

