ant-design-blazor / ant-design-charts-blazor

A Blazor chart library, based on G2Plot

Home Page:https://ant-design-blazor.github.io/ant-design-charts-blazor/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ant-design-charts-blazor

A Blazor chart library, based on G2Plot

English | 简体中文

💿 Current Version

  • Release: AntDesign.Charts
  • Development: AntDesign.Charts

📦 Installation Guide

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

    $ dotnet add package AntDesign.Charts
    • 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.

💕 Donation

This project is an MIT-licensed open source project. In order to achieve better and sustainable development of the project, we expect to gain more backers. We will use the proceeds for community operations and promotion. You can support us in any of the following ways:

We will put the detailed donation records on the backer list.

❓ Community Support

If you encounter any problems in the process, feel free to ask for help via following channels. We also encourage experienced users to help newcomers.

  • Slack Group (Chinese & English)
  • Ding Talk Group (Chinese)
Scan QR Code with DingTalk

About

A Blazor chart library, based on G2Plot

https://ant-design-blazor.github.io/ant-design-charts-blazor/

License:Apache License 2.0


Languages

Language:C# 63.4%Language:HTML 33.6%Language:JavaScript 2.0%Language:Less 0.9%Language:CSS 0.2%