A candlestick chart for d3.chart.
Please provide sample use of your chart here...will do
Sample API Documentation:
Description:
Allows the highlighting of a specific value
Parameters:
value
- The value to highlight.
Uses:
Example:
var chart = d3.select("#vis")
.append("svg")
.chart("MyEpicChart")
.higlight(12);
Sample Event Documentation:
Description:
Broadcast when a circle on the chart is being mousedover
Arguments:
value
- The value corresponding to the circle being mousedover.
Uses:
Example:
var chart = d3.select("#vis")
.append("svg")
.chart("MyEpicChart");
chart.on("brush", function(value) {
// handle event...
});