JSXGraph logo
JSXGraph
JSXGraph share

Share

Fullscreen icon
QR code
<iframe 
    src="https://www.jsxgraph.org/share/iframe/fullscreen-icon" 
    style="border: 1px solid black; overflow: hidden; width: 550px; aspect-ratio: 55 / 65;" 
    name="JSXGraph example: Fullscreen icon" 
    allowfullscreen
></iframe>
This code has to
<div id="board-0-wrapper" class="jxgbox-wrapper " style="width: 100%; ">
   <div id="board-0" class="jxgbox" style="aspect-ratio: 1/1; width: 100%;" data-ar="1/1"></div>
</div>

<script type = "text/javascript"> 
    /*
    This example is not licensed.
    */
    
    const BOARDID = 'board-0';

    const board = JXG.JSXGraph.initBoard(BOARDID, {
        showFullscreen: true,
        axis: true,
        boundingbox: [-5, 5, 5, -5],
        keepaspectratio: true
    });
    var p = board.create('point', [0, 1]),
        c = board.create('circle', [p, 2]);
 </script> 
/*
This example is not licensed.
*/

const BOARDID = 'your_div_id'; // Insert your id here!

const board = JXG.JSXGraph.initBoard(BOARDID, {
    showFullscreen: true,
    axis: true,
    boundingbox: [-5, 5, 5, -5],
    keepaspectratio: true
});
var p = board.create('point', [0, 1]),
    c = board.create('circle', [p, 2]);
<jsxgraph width="100%" aspect-ratio="1/1" title="Fullscreen icon" description="This construction was copied from JSXGraph examples database: BTW HERE SHOULD BE A GENERATED LINKuseGlobalJS="false">
   /*
   This example is not licensed.
   */
   
   const board = JXG.JSXGraph.initBoard(BOARDID, {
       showFullscreen: true,
       axis: true,
       boundingbox: [-5, 5, 5, -5],
       keepaspectratio: true
   });
   var p = board.create('point', [0, 1]),
       c = board.create('circle', [p, 2]);
</jsxgraph>

Fullscreen icon

Clicking on the fullscreen icon □ in the navigation bar displays the construction in full screen mode.
// Define the id of your board in BOARDID

const board = JXG.JSXGraph.initBoard(BOARDID, {
    showFullscreen: true,
    axis: true,
    boundingbox: [-5, 5, 5, -5],
    keepaspectratio: true
});
var p = board.create('point', [0, 1]),
    c = board.create('circle', [p, 2]);

This example is not licensed.