jqplot, usuń zewnętrzną granicę

Jak usunąć zewnętrzne granice jqplot, spójrz na poniższy zrzut ekranu. Próbowałem z różnymi opcjami i szukałem go, ale nie znalazłem rozwiązania.

Oto mój kod,

plot1 = $.jqplot(container, [data], {
        title: 'title',
        animate: true,
        animateReplot: true,
        seriesColors:['#00ADEE'],
        seriesDefaults: {
            renderer: $.jqplot.BarRenderer,
            shadow: false
        },
        axesDefaults: {
        },
        highlighter: {
            tooltipAxes: 'y',
            show: true,
            tooltipLocation: 'sw',
            formatString: '<table class="jqplot-highlighter"> \
      <tr><td>test:</td><td>%s</td></tr></table>'
        },
        grid: {borderColor: 'transparent', shadow: false, drawBorder: false, shadowColor: 'transparent'},
        axes: {
            xaxis: {
                renderer: $.jqplot.CategoryAxisRenderer,
                ticks:ticks
            },
            yaxis: {
                max:1000
            }
        }
    });

Proszę pomóż mi. Z góry dziękuję.

Oto JsFiddlepołączyć, Chcę usunąć zewnętrzną granicę.

questionAnswers(3)

yourAnswerToTheQuestion