Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <!-- Plotly.js -->
  <script src="https://cdn.plot.ly/plotly-latest.js"></script>
</head>
<body>
  <div id="myDiv"><!-- Plotly chart will be drawn inside this DIV --></div>
</body>
</html>
 
var plot1 = {
  x: [1, 2, 3, 4, 5],
  y: [1, 6, 3, 6, 1],
  mode: 'markers',
  type: 'scattergl',
  marker: { 
    symbol: 'triangle-up'
  }
};
var plot2 = {
  x: [1, 2, 3, 4, 5],
  y: [2, 7, 4, 7, 2],
  mode: 'markers',
  type: 'scattergl',
  marker: { 
    //symbol: 'x-dot'
  }
};
Plotly.newPlot('myDiv', [ plot1, plot2 ], {});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
mojoaxelpro
0viewers