Rotate text: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) (New page: 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. <jsxgraph> var brd = JSX.JSXGraph....) |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
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. | 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. | ||
<jsxgraph> | <jsxgraph> | ||
var brd = | var brd = JXG.JSXGraph.initBoard('jxgbox',{boundingbox:[-5,5,5,-5], grid:true}); | ||
</jsxgraph> | </jsxgraph> |
Revision as of 10:24, 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.