Standalone Examples » Single Item

A pie chart with a single item. Thrilling stuff, really. This is just for testing purposes.



var pie = new d3pie("pie", {
	header: {
		title: {
			text: "A Pie with One Item"
		}
	},
	data: {
		content: [
			{ label: "JavaScript", value: 50 }
		]
	}
});