<head>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</head>
<body>
<div id="graph"></div>
</body>
Plotly.plot('graph', [{
type: 'pie',
labels: ['apples', 'bananas', 'clementines'],
values: [20, 40, 0],
text: [20, 40, null],
textinfo: 'text'
}])
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.