Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div id="plot" style="width: 50%"></div>
              
            
!

CSS

              
                #plot .modebar {
  background: orange;
}

#plot .clicked path {
  fill: rgba(0, 0, 0, 1);
}
              
            
!

JS

              
                let data = {
  x: [0, 1, 2, 3, 4],
  y: [-1, 5, 2, 3, 3]
}

let layout = {
  xaxis: {
    range: [-1, 5]
  }
}

let lockIcon = {
  'width': 1000,
  'height': 1000,
  'path': "M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z",
  'transform': 'matrix(0.75 0 0 -0.75 0 1000)'
}

let lockBtnState = false;
let modeBarButtons = [[
  {
    name: 'Custom Lock',
    icon: lockIcon,
    click: () => { 
      alert('clicked custom button!'); 
      lockBtnState = !lockBtnState;
      let btns = document.getElementsByClassName('modebar-btn');
      for (let i = 0; i < btns.length; i++) {
        if (btns[i].getAttribute('data-title') === 'Custom Lock') {
          if (lockBtnState) {
            btns[i].classList.add('clicked');
          } else {
            btns[i].classList.remove('clicked');
          }
        }
      }
    }
  },
  { 
    name: 'Snapshot',
    icon: Plotly.Icons.camera,
    click: () => { alert('new button!'); }
  }, "zoom2d", "pan2d" ]];

Plotly.react('plot', [data], layout, { modeBarButtons: modeBarButtons });
              
            
!
999px

Console