Difference between revisions of "Rotate text"
From JSXGraph Wiki
Jump to navigationJump to searchA WASSERMANN (talk | contribs) |
A WASSERMANN (talk | contribs) |
||
Line 2: | Line 2: | ||
<jsxgraph> | <jsxgraph> | ||
var brd = JXG.JSXGraph.initBoard('jxgbox',{boundingbox:[-5,5,5,-5], grid:true}); | var brd = JXG.JSXGraph.initBoard('jxgbox',{boundingbox:[-5,5,5,-5], grid:true}); | ||
+ | var s = brd.create('slider',[[0,0],[0,3],[0,1,10]], {name:'s', id:'my_s'}); | ||
+ | var t = brd.create('text',[0,2,function(){return 's = '+s.Value().toFixed(3);}]); | ||
</jsxgraph> | </jsxgraph> |
Revision as of 12:26, 15 December 2009
Text can be reotated with CSS transformations. In that case JSXGraph text elements have to be realized with HTML div elements, which is the default case.