series.targetObject
The target of the bullet chart.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "bullet",
series: [{
data: [10, 15, 8, 12],
target: {
line: {
width: 2
},
color: "red"
}
}]
});
</script>
series.target.lineObject
The target line.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "bullet",
series: [{
data: [10, 15, 8, 12],
target: {
line: {
width: 3
}
}
}]
});
</script>
series.target.line.widthObject|Function
The width of the line.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "bullet",
series: [{
data: [10, 15, 8, 12],
target: {
line: {
width: 4
}
}
}]
});
</script>
series.target.colorString|Function
The target color.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "bullet",
series: [{
data: [10, 15, 8, 12],
target: {
color: "green"
}
}]
});
</script>
series.target.borderObject|Function
The border of the target.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "bullet",
series: [{
data: [10, 15, 8, 12],
target: {
border: {
color: "blue",
width: 2,
dashType: "dash"
}
}
}]
});
</script>
series.target.border.colorString|Function(default: "black")
The color of the border.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "bullet",
series: [{
data: [10, 15, 8, 12],
target: {
border: {
color: "red"
}
}
}]
});
</script>
series.target.border.dashTypeString|Function(default: "solid")
The dash type of the border.
"solid"
Specifies a solid line.
"dot"
Specifies a line consisting of dots.
"dash"
Specifies a line consisting of dashes.
"longDash"
Specifies a line consisting of a repeating pattern of long-dash.
"dashDot"
Specifies a line consisting of a repeating pattern of dash-dot.
"longDashDot"
Specifies a line consisting of a repeating pattern of long-dash-dot.
"longDashDotDot"
Specifies a line consisting of a repeating pattern of long-dash-dot-dot.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "bullet",
series: [{
data: [10, 15, 8, 12],
target: {
border: {
dashType: "dash",
color: "red",
width: 2
}
}
}]
});
</script>
series.target.border.widthNumber(default: 0)
The width of the border.
Example
<div id="sparkline"></div>
<script>
$("#sparkline").kendoSparkline({
type: "bullet",
series: [{
data: [10, 15, 8, 12],
target: {
border: {
width: 3
}
}
}]
});
</script>