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

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";
}

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

/* 
 * The following CSS code specifies all graph layout parameters.
 * It uses a Tree Layout. Since the Tree Layout reshapes the links already,
 * an additional link layout is not necessary (see LinkLayout: "false" above).
 */

GraphLayout {
    enabled           : "true";
    graphLayout       : "Tree";
    layoutMode        : "FREE";
    flowDirection     : "Bottom";
    globalLinkStyle   : "ORTHOGONAL_STYLE";
    globalAlignment   : "CENTER";
    connectorStyle    : "EVENLY_SPACED_PINS";
    siblingOffset     : "15";
    branchOffset      : "30";
    parentChildOffset : "20";
    position          : "200,20";
}

