Interactive geometry, plotting, visualization
npm install jsxgraph-types-fixJSXGraph
========
JavaScript library for interactive math visualizations in the web browser.
About
-----
JSXGraph is a cross-browser library for interactive geometry, function plotting,
charting, and data visualization in a web browser. It is implemented completely
in JavaScript, does not rely on any other library, and uses SVG, canvas, or even the venerable VML.
JSXGraph is easy to embed and has a small footprint. No plug-ins are required! Special care has been taken
to optimize the performance.
JSXGraph supports multi-touch events and runs on all major browsers.
JSXGraph is developed at the
Lehrstuhl für Mathematik und ihre Didaktik and the Center of Mobile Learning with Digital Technology,
University of Bayreuth, 95447 Bayreuth, Germany
Links
-------
- Project web site: https://jsxgraph.org/
- Hundreds of examples:
- https://jsxgraph.org/share/
- https://jsxgraph.org/wiki/
- GitHub project site: https://github.com/jsxgraph/jsxgraph
- Discuss: https://forum.jsxgraph.org
- Stackoverflow: https://stackoverflow.com/search?tab=newest&q=jsxgraph
- jsFiddle template: https://jsfiddle.net/8kep9syd/
- YouTube channel: https://www.youtube.com/@jsxgraph4224
- Moodle filter: https://moodle.org/plugins/filter_jsxgraph and https://github.com/jsxgraph/moodle-filter_jsxgraph
- (outdated: SourceForge project site: https://sf.net/projects/jsxgraph)
- (outdated: Google Group https://groups.google.com/group/jsxgraph)
- CDNs: Embed JSXGraph via
``html
`
src="https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraphcore.js">
type="text/css" href="https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraph.css">
`
or
html
`
src="//cdnjs.cloudflare.com/ajax/libs/jsxgraph/[versionnumber]/jsxgraphcore.js">
type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/jsxgraph/[versionnumber]/jsxgraph.css">
jsxgraphcore.js
Please report bugs to our issue tracking system found at
https://github.com/jsxgraph/jsxgraph/issues
Usage
-----
Include
- and
jsxgraph.css
- and,
`
- if required, one or more file readers
from a CDN or a local version in your HTML file.
__HTML template:__
html
`
jsxgraphsrc.js
For developing content, it is recommended to include (jsxgraphcore.js is the minified version of jsxgraphsrc.js).
$ npm install
For further usage instructions please consult our wiki
especially our tutorials
or the API reference docs.
Build and develop JSXGraph
--------------
1) Clone this repository or download the zip file.
2) To build and develop JSXGraph you need node.js v0.6+. First, install all
dependencies required to build JSXGraph using npm in the JSXGraph root directory: .
`
This will create a new subdirectory node_modules` in the JSXGraph root directory which holds
`
all tools and libraries required to build jsxgraphcore.js`.
$ npm run buildCore
3) To build JSXGraph run . This will output an non-minified version jsxgraphsrc.js
jsxgraphcore.js
and the minified version into the folder distrib.
src
4) Develop JSXGraph:
- Edit the source files in the folder
test
- Write unit tests in folder
$ npm run eslint
- Run and $ npm run test to check for errors
$ npm run check-format
- Run to check the formatting of the source code
plugins`
- Submit a pull request
Plug-ins
--------
- JSXGraph filter for moodle and formulas
- JSXGraph comes already included with STACK assessment
- Mediawiki plug-in is available in the folder
- JSXGraph in Jupyter
- ...
License
-------
JSXGraph is free software dual licensed under the GNU LGPL or MIT License.
You can redistribute it and/or modify it under the terms of the
- GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version
or
- MIT License: https://github.com/jsxgraph/jsxgraph/blob/master/LICENSE.MIT
JSXGraph is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License and
the MIT License along with JSXGraph. If not, see
and

