jsxgraph label positioning

by migerh

HTML

<link rel="stylesheet" href="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css">
<script src="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore.js"></script>
<div id='box' class='jxgbox'></div>

CSS

#box {
    width:500px;
    height:500px;
}

JavaScript

JXG.Options.polygon.hasInnerPoints = false;
var brd = JXG.JSXGraph.initBoard('box', {axis: true, boundingbox: [-1,10,10,-1], keepaspectratio: true});

var c = brd.create('chart', [3, 5, 4, 9], {chartStyle: 'bar', hasInnerPoints: true});