npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

fx-chart

v0.0.12

Published

fx-chart는 D3.js를 기반으로 한 강력하고 유연한 차트 라이브러리입니다. 다양한 차트 유형을 지원하며, 사용자 정의가 용이한 인터페이스를 제공합니다.

Downloads

182

Readme

fx-chart

fx-chart는 D3.js를 기반으로 한 강력하고 유연한 차트 라이브러리입니다. 다양한 차트 유형을 지원하며, 사용자 정의가 용이한 인터페이스를 제공합니다.

특징

  • D3.js 기반의 고성능 차트 렌더링
  • 다양한 차트 유형 지원 (라인, 바, 파이, 스캐터 등)
  • 반응형 디자인으로 모바일 환경 지원
  • 사용자 정의 가능한 스타일링 옵션
  • 애니메이션 효과 지원

설치

npm을 사용하여 fx-chart를 설치할 수 있습니다:

npm install fx-chart

사용법

fx-chart를 사용하는 기본적인 예제입니다:

"use client";

import { Bar } from "fx-chart";

export default function App() {
    return (
        <div>
            <Bar
                data={[
                    { key: "H1", value: 1 },
                    { key: "H2", value: 2 },
                    { key: "H3", value: 2 },
                    { key: "H4", value: 2 },
                    { key: "H5", value: 2 },
                ]}
            />
        </div>
    );
}

API 문서

자세한 API 문서는 여기에서 확인할 수 있습니다.

기여하기

프로젝트에 기여하고 싶으시다면 CONTRIBUTING.md 파일을 참조해 주세요.

라이선스

이 프로젝트는 MIT 라이선스 하에 배포됩니다. 자세한 내용은 LICENSE 파일을 참조하세요.