CrossfilterCharts.add_bubblechart!Method
add_bubblechart!

Construct and append a Bubble Chart to the DCOut object. Requires a previously created dimension. xcol, ycol, and r_col denote the DataFrame fields whose sums will determine the x position, y position, and radius of the bubbles in the final chart.

Use :DCCount to access the count field.

CrossfilterCharts.add_datatablewidget!Method
add_datatablewidget!

Construct and append a Data Table Widget to the DCOut object. Requires a previously constructed dimension for the first column.

CrossfilterCharts.bubblechartMethod
bubbleChart

Construct a bubblechart using the given master grouping and sums given by x_col, y_col, and r_col for x position, y position, and radius.

CrossfilterCharts.dcMethod
dc(df::DataFrame)

Construct a DC.js visualization based on the columns in the given DataFrame. This is the easiest and most straightforward way to use DC.jl.

CrossfilterCharts.get_chartsMethod
get_charts

Returns all charts constructed from the given column of the given type. chart_type can be: piechart, barchart, linechart, rowchart, bubblechart

CrossfilterCharts.quick_add!Function
quick_add!

Quickly build a chart using the group constructed from column. If multiple groups are found, an error is thrown unless use_first is set, in which case the first group found is used.

CrossfilterCharts.quick_add!Method
quick_add!

A utility function for quickly building a chart and adding it. Works with linechart, barchart, rowchart, piechart. Requires previously a constructed group.

CrossfilterCharts.randomize_ids!Method
randomize_ids!

Randomly re-initialize all dcout random ids. These are used when exporting to HTML to prevent charts from referencing one another across IJulia cells.

CrossfilterCharts.reduce_masterMethod

reduce_sum

A master reduction which sums values from all provided columns and tallies a count. Useful for making more complex charts like bubble charts.

CrossfilterCharts.set_elastic_height!Method
set_elastic_height!

Changes the elasticity of the output div height. A value of true indicates that the div will resize to fit all elements without needing a scrollbar.

CrossfilterCharts.isnaMethod
can_infer_chart(arr::AbstractVector)

Whether chart inference is supported for the given array type.