18 lines
351 B
JavaScript
18 lines
351 B
JavaScript
|
import systemGraphType from './systemGraphType';
|
||
|
|
||
|
const systemGraphRender = {};
|
||
|
|
||
|
/** Line渲染配置*/
|
||
|
systemGraphRender[systemGraphType.Line] = {
|
||
|
_type: systemGraphType.Line,
|
||
|
zlevel: 1
|
||
|
};
|
||
|
|
||
|
/** Text渲染配置*/
|
||
|
systemGraphRender[systemGraphType.Text] = {
|
||
|
_type: systemGraphType.Text,
|
||
|
zlevel: 1
|
||
|
};
|
||
|
|
||
|
export default systemGraphRender;
|