Function graph: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
<jsxgraph width="500" height="200"> | <jsxgraph width="500" height="200"> | ||
var board = JXG.JSXGraph.initBoard('jxgbox', {boundingbox: [-5, 2, 5, -2]}); | var board = JXG.JSXGraph.initBoard('jxgbox', {boundingbox: [-5, 2, 5, -2], axis: true}); | ||
var fun = board.create('functiongraph', ['sin(x)']); | var fun = board.create('functiongraph', ['sin(x)']); | ||
</jsxgraph> | </jsxgraph> | ||
Line 26: | Line 26: | ||
<script> | <script> | ||
var board = JXG.JSXGraph.initBoard('jxgbox', {boundingbox: [-5, 2, 5, -2]}); | var board = JXG.JSXGraph.initBoard('jxgbox', { | ||
boundingbox: [-5, 2, 5, -2], axis: true}); | |||
var fun = board.create('functiongraph', ['sin(x)']); | var fun = board.create('functiongraph', ['sin(x)']); | ||
</script> | </script> |
Latest revision as of 15:51, 25 January 2024
A minimal example how to embed JSXGraph in a web site:
The JavaScript code
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JSXGraph template</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<link href="https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraph.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraphcore.js" type="text/javascript" charset="UTF-8"></script>
<!-- The next line is optional: load MathJax -->
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js" id="MathJax-script" async></script>
</head>
<body>
<div id="jxgbox" class="jxgbox" style="width:500px; height:200px;"></div>
<script>
var board = JXG.JSXGraph.initBoard('jxgbox', {
boundingbox: [-5, 2, 5, -2], axis: true});
var fun = board.create('functiongraph', ['sin(x)']);
</script>
</body>
</html>