Skip to content

Commit 2afb898

Browse files
author
Kendo Bot
committed
Sync with Kendo UI Professional
1 parent bf323f0 commit 2afb898

24 files changed

+3065
-339
lines changed

docs/api/javascript/dataviz/ui/chart.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2546,7 +2546,7 @@ The color of the lines. Accepts a valid CSS color string, including hex and rgb.
25462546
color: "#aa00bb"
25472547
},
25482548
categories: ["2011", "2012", "2013"]
2549-
}],
2549+
},
25502550
series: [{
25512551
data: [1, 2, 3]
25522552
}]
@@ -2563,7 +2563,7 @@ The color of the lines. Accepts a valid CSS color string, including hex and rgb.
25632563
color: "rgb(128, 0, 255)"
25642564
},
25652565
categories: ["2011", "2012", "2013"]
2566-
}],
2566+
},
25672567
series: [{
25682568
data: [1, 2, 3]
25692569
}]
@@ -2580,7 +2580,7 @@ The color of the lines. Accepts a valid CSS color string, including hex and rgb.
25802580
color: "green"
25812581
},
25822582
categories: ["2011", "2012", "2013"]
2583-
}],
2583+
},
25842584
series: [{
25852585
data: [1, 2, 3]
25862586
}]
@@ -2606,12 +2606,12 @@ The following dash types are supported:
26062606
<div id="chart"></div>
26072607
<script>
26082608
$("#chart").kendoChart({
2609-
categoryAxis: [{
2609+
categoryAxis: {
26102610
line: {
26112611
dashType: "dashDot"
26122612
},
26132613
categories: ["2011", "2012", "2013"]
2614-
}],
2614+
},
26152615
series: [{
26162616
data: [1, 2, 3]
26172617
}]
@@ -2627,12 +2627,12 @@ If set to `true` the chart will display the category axis lines. By default the
26272627
<div id="chart"></div>
26282628
<script>
26292629
$("#chart").kendoChart({
2630-
categoryAxis: [{
2630+
categoryAxis: {
26312631
line: {
26322632
visible: false
26332633
},
26342634
categories: ["2011", "2012", "2013"]
2635-
}],
2635+
},
26362636
series: [{
26372637
data: [1, 2, 3]
26382638
}]
@@ -2648,12 +2648,12 @@ The width of the line in pixels. Also affects the major and minor ticks, but not
26482648
<div id="chart"></div>
26492649
<script>
26502650
$("#chart").kendoChart({
2651-
categoryAxis: [{
2651+
categoryAxis: {
26522652
line: {
26532653
width: 3
26542654
},
26552655
categories: ["2011", "2012", "2013"]
2656-
}],
2656+
},
26572657
series: [{
26582658
data: [1, 2, 3]
26592659
}]

0 commit comments

Comments
 (0)