<head>
<!-- Plotly.js -->
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</head>
<div id="myDiv" style="width:100%;"></div>
var trace1 = {
y:['Marc', 'Henrietta', 'Jean', 'Claude', 'Jeffrey', 'Jonathan', 'Jennifer', 'Zacharias'],
x: [90, 40, 60, 80, 75, 92, 87, 73],
type: 'bar',
orientation: 'h'
};
var data = [trace1];
var layout = {
title: 'Always Display the Modebar',
showlegend: false};
Plotly.newPlot('myDiv', data, layout, {displayModeBar: true});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.