{"id":2979,"date":"2013-08-05T09:51:32","date_gmt":"2013-08-05T00:51:32","guid":{"rendered":"https:\/\/gunmagisgeek.com\/wordpress\/?p=2979"},"modified":"2017-05-23T14:50:52","modified_gmt":"2017-05-23T05:50:52","slug":"post-2979","status":"publish","type":"post","link":"https:\/\/gunmagisgeek.com\/blog\/javascript\/2979","title":{"rendered":"Javascript\u3067\u30d5\u30ed\u30fc\u56f3\u3084\u7d44\u7e54\u56f3\u3001UML\u56f3\u306a\u3069\u3092\u7c21\u5358\u306b\u8868\u793a\u3067\u304d\u308b\u30e9\u30a4\u30d6\u30e9\u30ea\u300cJointJS\u300d"},"content":{"rendered":"<p><a href=\"http:\/\/www.jointjs.com\/\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/gunmagisgeek.com\/blog\/wp-content\/uploads\/2013\/08\/jointjsdemo.jpg\" alt=\"jointjsdemo\" width=\"590\" height=\"286\" class=\"aligncenter size-full wp-image-2980\" srcset=\"https:\/\/gunmagisgeek.com\/blog\/wp-content\/uploads\/2013\/08\/jointjsdemo.jpg 590w, https:\/\/gunmagisgeek.com\/blog\/wp-content\/uploads\/2013\/08\/jointjsdemo-300x145.jpg 300w\" sizes=\"auto, (max-width: 590px) 100vw, 590px\" \/><\/a><\/p>\n<p><a href=\"http:\/\/www.jointjs.com\/\">JointJS<\/a><\/p>\n<p>Microsoft Visio\u3092\u4f7f\u3063\u3066\u4f5c\u6210\u3059\u308b\u3088\u3046\u306a\u30bf\u30a4\u30d7\u306e\u56f3(\u30c0\u30a4\u30a2\u30b0\u30e9\u30e0)\u3067\u3059\u306d\u3002<br \/>\nD3.js\u3092\u4f7f\u3063\u3066\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c\u3001jointJS\u306e\u65b9\u304c\u7528\u9014\u306b\u7279\u5316\u3055\u308c\u3066\u3044\u308b\u5206\u7c21\u5358\u306b\u4f5c\u6210\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<br \/>\n\u30b5\u30af\u30c3\u3068\u7d44\u7e54\u56f3\u3084\u30d5\u30ed\u30fc\u30c1\u30e3\u30fc\u30c8\u306a\u3069\u3092\u4f5c\u6210\u3057\u305f\u3044\u3068\u304d\u306b\u4fbf\u5229\u3067\u3059\u3002<\/p>\n<h2>\u30b5\u30f3\u30d7\u30eb<\/h2>\n<p><span class=\"removed_link\" title=\"http:\/\/shimz.me\/libs\/jointjs\/example\/01.html\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/gunmagisgeek.com\/blog\/wp-content\/uploads\/2013\/08\/jointjsexample01.jpg\" alt=\"jointjsexample01\" width=\"560\" height=\"148\" class=\"aligncenter border size-full wp-image-2981\" srcset=\"https:\/\/gunmagisgeek.com\/blog\/wp-content\/uploads\/2013\/08\/jointjsexample01.jpg 560w, https:\/\/gunmagisgeek.com\/blog\/wp-content\/uploads\/2013\/08\/jointjsexample01-300x79.jpg 300w\" sizes=\"auto, (max-width: 560px) 100vw, 560px\" \/><\/span><br \/>\n\u4f5c\u6210\u3059\u308b\u56f3\u306e\u30bf\u30a4\u30d7\u306b\u3088\u3063\u3066\u306f\u30d7\u30e9\u30b0\u30a4\u30f3\u3092\u8aad\u307f\u8fbc\u3080\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n<pre class=\"lang:xhtml decode:true \" >&lt;script src=&quot;..\/joint.js&quot;&gt;&lt;\/script&gt;\r\n<\/pre>\n<pre class=\"lang:js decode:true \" >\/\/graph\u30e2\u30c7\u30eb\u306e\u751f\u6210\r\nvar graph = new joint.dia.Graph;\r\n\r\n\/\/paper(\u30b0\u30e9\u30d5\u3092\u8868\u793a\u3059\u308b\u30b9\u30c6\u30fc\u30b8)\u306e\u751f\u6210\r\nvar paper = new joint.dia.Paper({\r\n    el: $('#myholder'),\r\n    width: 600,\r\n    height: 200,\r\n    model: graph\r\n});\r\n\r\n\r\n\/*\r\n *  shape\u751f\u6210\r\n *\/\r\n\r\n\/\/rect\u30b7\u30a7\u30a4\u30d7\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u751f\u6210\r\nvar rect = new joint.shapes.basic.Rect({\r\n    position: { x: 100, y: 30 },\r\n    size: { width: 100, height: 30 },\r\n    attrs: { rect: { fill: 'blue' }, text: { text: 'my box', fill: 'white' } }\r\n});\r\n\r\n\/\/rect\u30b7\u30a7\u30a4\u30d7\u306e\u5c5e\u6027\u3092\u8a2d\u5b9a\r\nrect.attr({\r\n    rect: { fill: '#2C3E50', rx: 5, ry: 5, 'stroke-width': 2, stroke: 'black' },\r\n    text: {\r\n        text: 'my label', fill: '#3498DB',\r\n        'font-size': 18, 'font-weight': 'bold', 'font-variant': 'small-caps', 'text-transform': 'capitalize'\r\n    }\r\n});\r\n\r\n\/\/rect\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304b\u3089\u30af\u30ed\u30fc\u30f3(rect2)\u3092\u751f\u6210\r\nvar rect2 = rect.clone();\r\n\/\/rect2\u306e\u4f4d\u7f6e\u3092\u8a2d\u5b9a\r\nrect2.translate(300,50);\r\n\r\n\r\n\r\n\/*\r\n * link\u751f\u6210\r\n *\/\r\n\r\n \/\/link\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u751f\u6210\r\nvar link = new joint.dia.Link({\r\n    source: { id: rect.id },\r\n    target: { id: rect2.id },\r\n\tattrs: {}  \/\/attrs\u7528\u306e\u7a7a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3002\u3053\u308c\u304c\u7121\u3044\u3068link.attr\u3067\u30a8\u30e9\u30fc\u304c\u3067\u308b\r\n});\r\n\r\n\/\/link\u5c5e\u6027\u306e\u8a2d\u5b9a\r\nlink.attr({\r\n    '.connection': { stroke: 'blue' },\r\n    '.marker-source': { fill: 'red', d: 'M 10 0 L 0 5 L 10 10 z' },\r\n    '.marker-target': { fill: 'yellow', d: 'M 10 0 L 0 5 L 10 10 z' }\r\n}); \r\n\r\n\/\/\u6298\u70b9\u306e\u8a2d\u5b9a\r\nlink.set('vertices', [{ x: 300, y: 60 }, { x: 400, y: 60 }, { x: 400, y: 20 }]);\r\n\/\/\u7dda\u3092\u6ed1\u3089\u304b\u306b\u3059\u308b\r\nlink.set('smooth', true);\r\n\r\n\/\/rect\u3068link\u3092\u30b0\u30e9\u30d5\u306b\u8ffd\u52a0\u3059\u308b\r\ngraph.addCells([rect, rect2, link]);<\/pre>\n<p><span class=\"removed_link\" title=\"http:\/\/shimz.me\/libs\/jointjs\/example\/01.html\">example<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>JointJS Microsoft Visio\u3092\u4f7f&hellip;<\/p>\n","protected":false},"author":1,"featured_media":2980,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[],"class_list":["post-2979","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript","has-post-thumbnail-archive"],"_links":{"self":[{"href":"https:\/\/gunmagisgeek.com\/blog\/wp-json\/wp\/v2\/posts\/2979","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gunmagisgeek.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/gunmagisgeek.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/gunmagisgeek.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gunmagisgeek.com\/blog\/wp-json\/wp\/v2\/comments?post=2979"}],"version-history":[{"count":0,"href":"https:\/\/gunmagisgeek.com\/blog\/wp-json\/wp\/v2\/posts\/2979\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/gunmagisgeek.com\/blog\/wp-json\/wp\/v2\/media\/2980"}],"wp:attachment":[{"href":"https:\/\/gunmagisgeek.com\/blog\/wp-json\/wp\/v2\/media?parent=2979"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/gunmagisgeek.com\/blog\/wp-json\/wp\/v2\/categories?post=2979"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/gunmagisgeek.com\/blog\/wp-json\/wp\/v2\/tags?post=2979"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}