Unplanned
Last Updated: 17 Oct 2023 15:35 by Mark
Lee
Created on: 21 May 2021 13:54
Category: Charts
Type: Feature Request
15
Border settings for series in Chart
Are there border settings in the Chart?
1 comment
Mark
Posted on: 17 Oct 2023 15:35

In Kendo-UI Charts, I can set the property "border" like this:

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      border: {
        width: 2,
        color: "black",
        dashType: "dash",
      },
      data: [1, 2]
    }
  ]
});
</script>
Is there a way for doing the same thing in Blazor Chart? 

Thank you