This is a migrated thread and some comments may be shown as answers.

seriesDefault.gap bug

1 Answer 82 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Ned
Top achievements
Rank 1
Ned asked on 17 Aug 2012, 01:26 PM
seriesDefault.gap doesn't appear to be working.  I have to specify the gap on the series in order to have any effect.  In my relatively simple example,
            seriesDefaults: {
                type: "bar",
                stack: true,
                labels: {
                    visible: true,
                    position: "insideBase",
                    format: "c0"
                }
            },
            series: [{
                field: "Amount",
                gap: 0.3
            }],

works, but
            seriesDefaults: {
                type: "bar",
                stack: true,
                labels: {
                    visible: true,
                    position: "insideBase",
                    format: "c0"
                },
                gap: 0.3
            },
            series: [{
                field: "Amount"
            }],

does not.

1 Answer, 1 is accepted

Sort by
0
Hristo Germanov
Telerik team
answered on 20 Aug 2012, 03:06 PM
Hello Ned Eisenbrey,

I was able to reproduce the issue. I am glad to inform you that this issue is fixed and the fix will be included with the next official release of Kendo UI.

I have updated your points.

All the best,
Hristo Germanov
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Charts
Asked by
Ned
Top achievements
Rank 1
Answers by
Hristo Germanov
Telerik team
Share this question
or