SDM {
    GraphLayout : "true";
    LinkLayout : "true";
}

node {
    class : "ilog.views.sdm.graphic.IlvGeneralNode";
    shapeType : "RoundRectangle";
    shapeWidth : "30";
    shapeHeight : "30";
    label : "@name";
    labelPosition : "Center";
    labelScaleFactor: "0.5";
    fillStyle : "RADIAL_GRADIENT";
    fillColor1 : "white";
    fillColor2 : "pink";
}

node:selected {
    fillColor1 : "cyan";
}

link {
    class : "ilog.views.sdm.graphic.IlvGeneralLink";
    oriented = "true";
    foreground : "black";
    lineWidth : "2";
    arrowRatio : "2";
}

/* 
 * The following CSS code specifies all parameters of graph layout and
 * of the graph layout renderer.
 * It uses a Hierarchical Layout.
 */

GraphLayout {
    graphLayout : "Hierarchical";
    flowDirection : "Bottom";
    globalLinkStyle: "ORTHOGONAL_STYLE";
    enabled : "false";
}

/* 
 * The following CSS code specifies all parameters of link layout and
 * of the link layout renderer.
 * It uses the hierarchical mode of the link layout renderer. 
 */

LinkLayout {
    hierarchical : "true";
}

