NativeScript UI图表图例:将标签更改为方形

NativeScript UI图表图例:将标签更改为方形,nativescript,nativescript-angular,nativescript-telerik-ui,Nativescript,Nativescript Angular,Nativescript Telerik Ui,如何将饼图的图例标签更改为正方形。我看了一下标签,但它并没有把标签改成正方形 <RadCartesianChart height="300"> <CategoricalAxis tkCartesianVerticalAxis></CategoricalAxis> <LinearAxis tkCartesianHorizontalAxis></LinearAxis> <BarSeries tkCartesianSeri

如何将饼图的图例标签更改为正方形。我看了一下标签,但它并没有把标签改成正方形

<RadCartesianChart height="300">
  <CategoricalAxis tkCartesianVerticalAxis></CategoricalAxis>
  <LinearAxis tkCartesianHorizontalAxis></LinearAxis>

  <BarSeries tkCartesianSeries
              [showLabels]="true"
              [items]="sampleData"
              categoryProperty="name"
              valueProperty="value">
    <PointLabelStyle tkBarLabelStyle
                      margin="10"
                      textSize="10"></PointLabelStyle>
  </BarSeries>
</RadCartesianChart>

我认为这种定制不受支持,默认情况下,它在Android中是方形的,在iOS中是圆形的


如果您喜欢该选项,可能需要提出功能请求。

谢谢!我觉得情况就是这样。我将就着iOS上的圆圈。