Commit 454b0bd6 authored by GoshaZotov's avatar GoshaZotov

fix bug 32593

parent 96ba7fb0
...@@ -5989,6 +5989,12 @@ drawHBarChart.prototype = ...@@ -5989,6 +5989,12 @@ drawHBarChart.prototype =
var overlap = this.cChartSpace.chart.plotArea.chart.overlap ? this.cChartSpace.chart.plotArea.chart.overlap : defaultOverlap; var overlap = this.cChartSpace.chart.plotArea.chart.overlap ? this.cChartSpace.chart.plotArea.chart.overlap : defaultOverlap;
var ptCount = this.cChartDrawer.getPtCount(this.chartProp.series); var ptCount = this.cChartDrawer.getPtCount(this.chartProp.series);
var height = heightGraph / ptCount; var height = heightGraph / ptCount;
var crossBetween = this.cChartSpace.getValAxisCrossType();
if(crossBetween)
{
height = heightGraph / (ptCount - 1);
}
var gapWidth = this.cChartSpace.chart.plotArea.chart.gapWidth ? this.cChartSpace.chart.plotArea.chart.gapWidth : 150; var gapWidth = this.cChartSpace.chart.plotArea.chart.gapWidth ? this.cChartSpace.chart.plotArea.chart.gapWidth : 150;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment