JSFiddle - React, Tailwind, and code Playground

by migerh

HTML

<link rel="stylesheet" href="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css">
<script src="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore.js"></script>
<div id="jxgbox" class="jxgbox" style="width:500px; height:500px;"></div>
<button id="remove">Remove graph</button>

JavaScript

JXG.Options.board.minimizeReflow = 'none';

var brd = JXG.JSXGraph.initBoard('jxgbox', {boundingbox: [-10, 10, 10, -10], showNavigation: false, axis: false});

brd.create('image', 
  ['http://beta.mapleta.com/mapleta/web/DeMaTCl000/Public_Html/Demo_files/sup_dem_graph.gif', 
  [-5,-5], [10,10]], 
  {fixed:true, highlight:false});