Hi,
I have been trying to remove a small border that appears on a donut we render with one series but a grouped datasource. This shows two rings. Please see screenshot. The border is clear in the blue area, we want the colours to be seamless without the faint line inbetween. Please point me to the config option which may remove this line.
Here is my current config:
I have been trying to remove a small border that appears on a donut we render with one series but a grouped datasource. This shows two rings. Please see screenshot. The border is clear in the blue area, we want the colours to be seamless without the faint line inbetween. Please point me to the config option which may remove this line.
Here is my current config:
{
legend: {
visible:
false
},
theme:
"flat"
,
chartArea: {
background:
""
,
},
dataSource:
new
kendo.data.DataSource({
data: [],
group: { field:
"level"
},
sort: [
{ field:
"divisionId"
, dir:
"asc"
},
{ field:
"name"
, dir:
"asc"
}
],
}),
seriesDefaults: {
type:
"donut"
,
startAngle: 0
},
series: [
{
field:
"value"
,
categoryField:
"name"
,
colorField:
"colour"
,
labels: { visible:
false
},
highlight: { visible:
false
},
holeSize: 52,
margin: 0,
border: { width: 0 },
line: { visible:
false
},
}],
valueAxis: {
line: { visible:
false
},
majorGridLines: { visible:
false
},
minorGridLines: { visible:
false
},
labels: { visible:
false
},
},
categoryAxis: {
line: { visible:
false
},
majorGridLines: { visible:
false
},
minorGridLines: { visible:
false
},
labels: { visible:
false
},
},
seriesClick: scope.onSeriesClick,
tooltip: {
visible:
true
,
template:
"#= category #: #= kendo.toString(value, 'n0') #"
}
};