js绘制流程图、图表------with mermaid.js











   graph LR;
    A--合并-->B;
    A-->C;
    B-->D;
    C-->D;





data-row-style

 function changecolor (row,index){
 var Class={};
 Class.css={};
 Class.css.color='red';
 Class.css.background='blue';

 return Class;
 }


        {
                title: '流程类型',
                field: 'WORKFLOW_NAME',
                width: '8%',
                halign: 'left',
                align: 'left',
cellStyle:'changecolum',
                sortable: true
              },{
                  title: '主题',
                  field: 'SUBJECT',
                  width: '24%',
                  halign: 'left',
                  align: 'left',
                  sortable: true
              }, {
                  title: '故障级别',
                  field: 'PRIORITY',
                  width: '6%',
                  halign: 'left',
                  align: 'left',
                  sortable: true
              }




你可能感兴趣的:(ReactJs)