Liking cljdoc? Tell your friends :D

clj-chart.chart


areaclj

(area {:keys [title x-axis y-axis width height series]
       :or {title "Area Chart" x-axis "X" y-axis "Y" width 600 height 400}})

Create area chart

Create area chart
raw docstring

barclj

(bar {:keys [title width height x-axis y-axis series]
      :or {title "Bar Chart" width 600 height 400 x-axis "X" y-axis "Y"}})

Create Bar chart

Create Bar chart
raw docstring

bubbleclj

(bubble {:keys [title width height x-axis y-axis series]
         :or {title "Bubble Chart" width 600 height 400}})

Create Bubble chart

Create Bubble chart
raw docstring

donutclj

(donut {:keys [title width height series]
        :or {title "Pie Chart" width 600 height 400}})

Create donut chart

Create donut chart
raw docstring

histogramclj

(histogram {:keys [title width height x-axis y-axis series min max bins]
            :or {title "histogram" width 600 height 400}})

Create a histogram chart

Create a histogram chart
raw docstring

lineclj

(line {:keys [title width height series marker-size]
       :or {title "Line Chart" width 600 height 400 marker-size 0}})

Create Line chart

Create Line chart
raw docstring

logarithmic-lineclj

(logarithmic-line {:keys [title width height series]
                   :or {title "Logarithmic Chart" width 600 height 400}})

Create Logarithmic Line chart

Create Logarithmic Line chart
raw docstring

pieclj

(pie {:keys [title width height series]
      :or {title "Pie Chart" width 600 height 400}})

Create pie chart

Create pie chart
raw docstring

scatterclj

(scatter {:keys [title width height series]
          :or {title "Scatter Chart" width 600 height 400}})

Create Scatter chart

Create Scatter chart
raw docstring

stepclj

(step {:keys [title width height series]
       :or {title "Line Chart" width 600 height 400}})

Create Step chart

Create Step chart
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close