Fullscreen mode: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 1: Line 1:
<jsxgraph width="500" height="500">
<jsxgraph width="500" height="500">
var board = JXG.JSXGraph.initBoard('jxgbox', {axis:true, boundingbox:[-5, 5, 5, -5]});
var board = JXG.JSXGraph.initBoard('jxgbox', {
        axis:true,  
        boundingbox:[-5, 5, 5, -5],
        showFullscreen: true
});


var plot = board.create('functiongraph', ["nthroot(x, 3)"], {withLabel: true, name:'nthroot(x,3)'});
var plot = board.create('functiongraph', ["nthroot(x, 3)"], {withLabel: true, name:'nthroot(x,3)'});

Revision as of 19:54, 1 April 2020

The underlying JavaScript code