borderWidth

defines the width of the border

number borderWidth;

Example

webix.ui({
    view:"chart",
    type:"area",
    value:"#sales#",
    label:"#sales#",
    border:true,
    borderWidth:2,
    data: dataset
});

Details

This setting works only if the border is enabled (border:true) for the following types of charts:

  • area chart
  • pie chart
  • splineArea chart
Back to top