Advertisement
Guest User

Untitled

a guest
Dec 10th, 2013
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (ns arp-charts.cljs.charts
  2.   (:use-macros [c2.util :only [bind!]])
  3.   (:require [singult.core :as singult]
  4.             [c2.dom :as dom]
  5.             [reflex.core :as reflex]))
  6.  
  7. (bind! "#bars"
  8.   [:svg [:style {:type "text/css"} (str "<![CDATA[" css "]]>")]
  9.    [:g.plot
  10.     [:g.coordinate-axes
  11.        [:line {:x1 20 :y1 50 :x2 20 :y2 300}]
  12.        [:line {:x1 20 :y1 300 :x2 620 :y2 300}]
  13.      ]
  14.     ]])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement