You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.6 KiB
116 lines
2.6 KiB
3 years ago
|
/* ------------------------------------------------------------------------------
|
||
|
*
|
||
|
* # Dimple.js - horizontal lollipop
|
||
|
*
|
||
|
* Demo of horizontal lollipop chart. Data stored in .tsv file format
|
||
|
*
|
||
|
* Version: 1.0
|
||
|
* Latest update: August 1, 2015
|
||
|
*
|
||
|
* ---------------------------------------------------------------------------- */
|
||
|
|
||
|
$(function () {
|
||
|
|
||
|
// Construct chart
|
||
|
var svg = dimple.newSvg("#dimple-bubble-lollipop-horizontal", "100%", 500);
|
||
|
|
||
|
|
||
|
d3.tsv("assets/demo_data/dimple/demo_data.tsv", function (data) {
|
||
|
|
||
|
// Filter data
|
||
|
data = dimple.filterData(data, "Date", [
|
||
|
"01/07/2011", "01/08/2011", "01/09/2011",
|
||
|
"01/10/2011", "01/11/2011", "01/12/2011"
|
||
|
]);
|
||
|
|
||
|
|
||
|
// Create chart
|
||
|
// ------------------------------
|
||
|
|
||
|
// Define chart
|
||
|
var myChart = new dimple.chart(svg, data);
|
||
|
|
||
|
// Set bounds
|
||
|
myChart.setBounds(0, 0, "100%", "100%");
|
||
|
|
||
|
// Set margins
|
||
|
myChart.setMargins(70, 25, 20, 45);
|
||
|
|
||
|
|
||
|
// Create axes
|
||
|
// ------------------------------
|
||
|
|
||
|
// Horizontal
|
||
|
var x = myChart.addMeasureAxis("x", "Unit Sales");
|
||
|
|
||
|
// Vertical
|
||
|
var y = myChart.addCategoryAxis("y", "Month");
|
||
|
|
||
|
// Order by date
|
||
|
y.addOrderRule("Date");
|
||
|
|
||
|
// Show vertical grid lines
|
||
|
y.showGridlines = true;
|
||
|
|
||
|
// Other axes
|
||
|
myChart.addMeasureAxis("z", "Operating Profit");
|
||
|
|
||
|
|
||
|
// Construct layout
|
||
|
// ------------------------------
|
||
|
|
||
|
// Add bubbles
|
||
|
myChart.addSeries("Channel", dimple.plot.bubble);
|
||
|
|
||
|
|
||
|
// Add legend
|
||
|
// ------------------------------
|
||
|
|
||
|
var myLegend = myChart.addLegend(0, 5, "100%", 0, "left");
|
||
|
|
||
|
|
||
|
// Add styles
|
||
|
// ------------------------------
|
||
|
|
||
|
// Font size
|
||
|
x.fontSize = "12";
|
||
|
y.fontSize = "12";
|
||
|
|
||
|
// Font family
|
||
|
x.fontFamily = "Roboto";
|
||
|
y.fontFamily = "Roboto";
|
||
|
|
||
|
// Legend font style
|
||
|
myLegend.fontSize = "12";
|
||
|
myLegend.fontFamily = "Roboto";
|
||
|
|
||
|
|
||
|
//
|
||
|
// Draw chart
|
||
|
//
|
||
|
|
||
|
// Draw
|
||
|
myChart.draw();
|
||
|
|
||
|
// Position legend text
|
||
|
myLegend.shapes.selectAll("text").attr("dy", "1");
|
||
|
|
||
|
|
||
|
// Resize chart
|
||
|
// ------------------------------
|
||
|
|
||
|
// Add a method to draw the chart on resize of the window
|
||
|
$(window).on('resize', resize);
|
||
|
$('.sidebar-control').on('click', resize);
|
||
|
|
||
|
// Resize function
|
||
|
function resize() {
|
||
|
|
||
|
// Redraw chart
|
||
|
myChart.draw(0, true);
|
||
|
|
||
|
// Position legend text
|
||
|
myLegend.shapes.selectAll("text").attr("dy", "1");
|
||
|
}
|
||
|
});
|
||
|
});
|