2014年5月3日土曜日

JGraphXで図形の色を変更する

JGraphXで図形の色の変更はmxConstantsの以下の定数を使用します。
  • STYLE_STROKECOLOR:線の色
  • STYLE_FILLCOLOR:塗りつぶし色
  • STYLE_FONTCOLOR:フォント色
サンプルコード
import javax.swing.*
import groovy.swing.*
import com.mxgraph.swing.*
import com.mxgraph.view.*
import com.mxgraph.util.mxConstants

def graph = new mxGraph()
parent = graph.getDefaultParent()

graph.model.beginUpdate()
try
{
  def stylesheet = graph.getStylesheet()
  // カスタムスタイル
  def style1 = [
    // 線の色
    (mxConstants.STYLE_STROKECOLOR): "#cccccc",
    // 塗りつぶし色
    (mxConstants.STYLE_FILLCOLOR): "#dddddd",
    // 文字色
    (mxConstants.STYLE_FONTCOLOR): "#880000"
  ]
  stylesheet.putCellStyle("style1", style1)

  def v1 = graph.insertVertex(parent, null, "処理1",
    20, 20, 100, 30, "style1")
  def v2 = graph.insertVertex(parent, null, "処理2",
    20, 100, 100, 30)
  def v3 = graph.insertVertex(parent, null, "処理3",
    20, 180, 100, 30)


  def des = stylesheet.getDefaultEdgeStyle()

  graph.insertEdge(parent, null, "正常終了", v1, v2)

  graph.insertEdge(parent, null, "正常終了", v2, v3)
}
finally
{
  graph.model.endUpdate()
}

sb = new SwingBuilder()
sb.frame(
  title: "JGraphX - custom style",
  visible: true,
  pack: true,
  resizable: true,
  defaultCloseOperation: WindowConstants.EXIT_ON_CLOSE
){
  widget( new mxGraphComponent(graph) )
}
実行結果

関連情報
JGraphxのダウンロードページ

0 件のコメント:

コメントを投稿