series.notes.label Object

The label of the notes.

series.notes.label.background String

The background color of the label. Accepts a valid CSS color string, including hex and rgb.

Example - set the series label background

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        background: "red"
      }
    }
  }]
});
</script>

series.notes.label.border Object

The border of the label.

Example - set the series label border

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        border: {
          color: "green",
          dashType: "dashDot",
          width: 1
        }
      }
    }
  }]
});
</script>

series.notes.label.border.color String (default: "black")

The color of the border. Accepts a valid CSS color string, including hex and rgb.

Example - set the series label border color

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        border: {
          color: "green"
        }
      }
    }
  }]
});
</script>

series.notes.label.border.dashType String (default: "solid")

The dash type of the border.

The following dash types are supported:

  • "dash" - a line consisting of dashes
  • "dashDot" - a line consisting of a repeating pattern of dash-dot
  • "dot" - a line consisting of dots
  • "longDash" - a line consisting of a repeating pattern of long-dash
  • "longDashDot" - a line consisting of a repeating pattern of long-dash-dot
  • "longDashDotDot" - a line consisting of a repeating pattern of long-dash-dot-dot
  • "solid" - a solid line

Example - set the series label border dash type

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        border: {
          dashType: "dashDot",
          width: 1
        }
      }
    }
  }]
});
</script>

series.notes.label.border.width Number (default: 0)

The width of the border in pixels. By default the border width is set to zero which means that the border will not appear.

Example - set the series label border width

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        border: {
          width: 1
        }
      }
    }
  }]
});
</script>

series.notes.label.color String

The text color of the label. Accepts a valid CSS color string, including hex and rgb.

Example - set the series label color as a hex string

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        color: "#aa00bb"
      }
    }
  }]
});
</script>

series.notes.label.font String (default: "12px Arial,Helvetica,sans-serif")

The font style of the label.

Example - set the chart series notes label font

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        font: "20px sans-serif"
      }
    }
  }]
});
</script>

series.notes.label.template String|Function

The template which renders the labels.

The fields which can be used in the template are:

  • value - the point value

The text can be split into multiple lines by using line feed characters ("\n").

Example - set the series notes label template as a string

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        template: "Year: #: value #"
      }
    }
  }]
});
</script>

series.notes.label.visible Boolean (default: true)

If set to true the chart will display the series notes label. By default the series notes label are visible.

Example - hide the series notes label

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        visible: false
      }
    }
  }]
});
</script>

series.notes.label.rotation Number (default: 0)

The rotation angle of the label. By default the label are not rotated.

Example - rotate the series notes label

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        rotation: 90
      }
    }
  }]
});
</script>

series.notes.label.format String (default: "{0}")

The format used to display the notes label. Uses kendo.format. Contains one placeholder ("{0}") which represents the axis value.

Example - set the series notes label format

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [{
      value: 1,
      noteText: "A"
    }]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        format: "value slot: {0}"
      }
    }
  }]
});
</script>

series.notes.label.position String (default: "inside")

The position of the labels.

  • "inside" - the label is positioned inside of the icon.
  • "outside" - the label is positioned outside of the icon.
In this article