JavaScript/jQuery Chart - Relocate the Legend

The legend can be moved inside the chart using the position property, and also aligned in the horizontal or vertical direction using the horizontalAlignment or verticalAlignment property.

JavaScript
  • $(function() {
  • $("#chartContainer").dxChart({
  • // ...
  • legend: {
  • position: "inside", // or "outside"
  • horizontalAlignment: "center", // or "left" | "right"
  • verticalAlignment: "top" // or "bottom"
  • }
  • });
  • });

Below, you can try out these properties in action.

See Also