New to Kendo UI for jQueryStart a free 30-day trial

Series.notes.label

configuration

The label of the notes.

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  dataSource: {
    data: [
      { value: 1, noteText: "Low" },
      { value: 2, noteText: "" },
      { value: 3, noteText: "High" }
    ]
  },
  series: [{
    field: "value",
    noteTextField: "noteText",
    notes: {
      label: {
        background: "yellow",
        font: "14px Arial",
        color: "blue",
        border: {
          color: "red",
          width: 1
        }
      }
    }
  }]
});
</script>

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

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

The border of the label.

<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>

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

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

The font style of the label.

Default: "12px Arial,Helvetica,sans-serif"

<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>

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

Default: "{0}"

<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>

The position of the labels.

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

Default: "inside"

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    notes: {
      data: [{
        value: 15
      }],
      label: {
        position: "outside"
      }
    },
    data: [10, 15, 20]
  }]
});
</script>

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

Default: 0

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

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").

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

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

Default: true

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