有没有人为RadPieChart提供nativescript + angular样本?

问题描述 投票:0回答:1

我正在创建一个跨平台的应用程序,必须在我的主页选项卡上显示饼图。我在哪里可以找到完整的例子?

我尝试跟随this tutorial根据我使用的版本更改它但不起作用,在我看来第一部分与第二部分不匹配。

这是home.component.html的一部分

<RadPieChart id="pieChartGiacenze" allowAnimation="true">
            <RadPieChart.series>
              <DonutSeries
                  selectionMode="DataPoint"
                  expandRadius="0.4"
                  outerRadiusFactor="0.7"
                  innerRadiusFactor="0.4"
                  valueProperty="Amount"
                  legendLabel="Brand"
                  [items]="pieSource">
              </DonutSeries>
            </RadPieChart.series>
            <RadPieChart.legend>
              <RadLegendView position="Right" offsetOrigin="TopRight" width="110" enableSelection="true"></RadLegendView>
            </RadPieChart.legend>
          </RadPieChart>

这是home.component.ts的一部分

public pieSource;

//.....somecode.....

this.pieSource = new ObservableArray();
      this.pieSource.push({Brand:"ciao", Amount:50});
      this.pieSource.push({Brand:"mondo", Amount:80});

我在家里看不到图表。我哪里错了?

angular typescript nativescript nativescript-angular
1个回答
0
投票

这是.html文件中的示例

<GridLayout height="500" rows="auto,*">
                <Label text="Test Pie Chart" row="0"></Label>
                <RadPieChart allowAnimation="true" row="1">
                    <PieSeries tkPieSeries selectionMode="DataPoint"
                        expandRadius="0.4" outerRadiusFactor="0.7" [items]="pieSource"
                        valueProperty="Amount" legendLabel="Brand"></PieSeries>
                    <RadLegendView tkPieLegend position="Right" offsetOrigin="Bottom"
                        width="100" enableSelection="true" offsetOrigin="TopRight"></RadLegendView>
                </RadPieChart>
            </GridLayout>

并在您的.ts文件中

pieSource: { Brand: string, Amount: number }[] = [
        { Brand: "Audi", Amount: 10 },
        { Brand: "Mercedes", Amount: 76 },
        { Brand: "Fiat", Amount: 60 },
        { Brand: "BMW", Amount: 24 },
        { Brand: "Crysler", Amount: 40 }
    ];

这是你的playground

© www.soinside.com 2019 - 2024. All rights reserved.