logo

Introduce

A Blazor chart library, based on G2Plot.

GitHub: https://github.com/ant-design-blazor/ant-design-charts-blazor

📦 Installation Guide

  • Go to the project folder of the application and install the NuGet package reference

    $ dotnet add package AntDesign.Charts
    
    • Link the static files in wwwroot/index.html (WebAssembly) or Pages/_Host.razor (Server)
    <script src="_content/AntDesign.Charts/g2plot.min.js"></script>
    <script src="_content/AntDesign.Charts/ant-design-charts-blazor.js"></script>
    
    • Add namespace in _Imports.razor
    @using AntDesign.Charts
    
  • Finally, it can be referenced in the `.razor' component!

    <Line Data="data" Config="config" />
    
    @code {
        object[] data = new object[] {
            new  { year = "1991", value = 3 },
            new  { year = "1992", value = 4 },
            new  { year = "1993", value = 3.5 },
            new  { year = "1994", value = 5 },
            new  { year = "1995", value = 4.9 },
            new  { year = "1996", value = 6 },
            new  { year = "1997", value = 7 },
            new  { year = "1998", value = 9 },
            new  { year = "1999", value = 13 },
        };
    
        LineConfig config = new LineConfig()
            {
                Padding = "auto",
                XField = "year",
                YField = "value",
                Smooth = true,
            };
    }
    

    🔗 Links

  • Official Blazor Documentation

🤝 Contributing

PRs Welcome

If you would like to contribute, feel free to create a Pull Request, or give us Bug Report.

文档已更新,请点击 此处 更新。
A new version of this app is available. Click here to update.