MediaWiki example (dup)

From JSXGraph Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The MediaWiki Plugin introduces a new tag jsxgraph. It has four attributes:

Attribute Effect
box Defines the id of the div the construction is drawn on. The default value is jxgbox
width The container's width
height The container's height
filename To load a GEONExT construction in a .gxt-file


The underlying code

<jsxgraph box="jxgbox" width="500" height="500">
  var brd = JXG.JSXGraph.initBoard('jxgbox',{boundingbox:[-2,2,2,-2]});
  var p = brd.create('point',[1.5,1.5],{face:'o', size:8});
  var q = brd.create('point',[-1,-0.5],{face:'x', size:5});
  brd.create('segment',[p,q],{dash:3});
</jsxgraph>

Category:Examples