Socket
Book a DemoInstallSign in
Socket

@amoutonbrady/solid-apexcharts

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@amoutonbrady/solid-apexcharts

Solid wrapper for ApexCharts

latest
Source
npmnpm
Version
0.0.1
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

@amoutonbrady/solid-apexcharts

@amoutonbrady/solid-apexcharts

pnpm

A small wrapper around Apexcharts for Solid. There's already a package named solid-apexcharts.

If I end up using this package, I expect it to be tailored to my need which will probably be different than the original authors that is closer to the Apexcharts wrapper of Vue and React.

Quick start

Install it:

pnpm add @amoutonbrady/solid-apexcharts

Use it:

import { ApexCharts, useApexCharts } from '@amoutonbrady/solid-apexcharts';

function App() {
  const [apexChart] = useApexCharts(options);

  return <>
    <h1>Welcome to my super charts page!</h1>

    {/* You can either wire things manually and have more control over the template */}
    <div ref={apexCharts}></div>

    {/* Or use pre-built components */}
    <ApexCharts {...options} />
  </>
}

Keywords

apexcharts

FAQs

Package last updated on 12 Aug 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts