How to prevent overlapping columns in Highcharts

I believe that this is a general question that does not need much information from my data in highcharts format.

I want the columns not to overlap / overlap each other, how to do this?

See the image link below for how to do it now.

http://highslide.com/forum/download/file.php?id=3157

jsfiddle: http://jsfiddle.net/Dzs5q/

+5
source share
3 answers

Try reproducing the error here @ http://jsfiddle.net/jugal/bgNBG/

High-quality default charts flexibly reduce column widths if there are too many to avoid duplication.

, , column.pointWidth

    column: {           
        pointWidth : 10
    }

: @http://jsfiddle.net/jugal/bgNBG/2/

, , , .

№ 1. column.pointWidth
, . : @http://jsfiddle.net/jugal/bgNBG/

№ 2. column.dataGrouping
, ( ) , /.

dataGrouping = {
    groupPixelWidth: 40, // Minimum width for each column
    units: [[            // Permissible groupings
        'day',
        [1, 2, 3,4,5,6]  // 1,2,3,4,5,6 days may be grouped into 1 column
        ]]
}

: @http://jsfiddle.net/jugal/JraJW/4/
@fooobar.com/questions/1127918/...

+11

, / , - . <div>.

div c0deNinja, / . , /, .

-1

, , .. , x ( : ), , , x.

, x, " " " ", " ". .

, , , .

-1

All Articles