Fullscreen mode: Difference between revisions

From JSXGraph Wiki
(Created page with "<jsxgraph width="500" height="500"> var board = JXG.JSXGraph.initBoard('jxgbox', {axis:true, boundingbox:[-5, 5, 5, -5]}); var plot = board.create('functiongraph', ["nthroot(...")
 
No edit summary
Line 2: Line 2:
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]});


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



Revision as of 19:53, 1 April 2020

The underlying JavaScript code