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

@momentum-ui/charts

v1.0.0-beta.14

Published

momentum style chart library

Downloads

98

Readme

Momentum UI Charts

CircleCI license

@momentum-ui/charts

Momentum UI Charts is a UI framework for implementing Cisco Momentum Design into web apps and sites.

Table of Contents

Background

This guide explains how to using Momenmtum Charts Library. The get start section shows an example which covers most usage of Momentum Charts. Foundmamentals section will show the programming principle. The Api section shows the detail usage of each component and class insite Momentum.

Momentum Charts is based on Momentum Design System. The template module in Momentum Charts offers an easier way to draw charts which follows Momentum Design. The template also keep the flexibility of coding.

Install

Npm or yarn

Install and manage the Momentum Charts using NPM. You may use yarn or npm. By default, yarn/npm installs packages to node_modules/.

npm install @momentum-ui/charts --save

or

yarn add @momentum-ui/charts

Github

You can clone Momentum Charts from github.

After you download and go to charts folder, you can run yarn build to generate different files for usage.

/bundles javascript file for script usage

/lib built folder

/es es6 version

/src/lib source file

Get Start

Before reading the documents, make sure you have imported Momentum Charts to your application.

import MomentumCharts from '@momentum-ui/charts';
//or
import { Board } from '@momentum-ui/charts';

You can also ran yarn build to get complied files in ./bundles, ./es or ./lib. You need add d3.js if you use <script> tag to link the files under ./bundles

In this section, you will create examples step by step.

Fundamentals

In this section, we will introduce base rule and principle of Momentum Charts.

Techniques

This section will give a brief introduce of some other techniques.

D3

D3.js is a JavaScript library for manipulating documents based on data. Mementum Charts use part of the features from D3. You can also use D3 when using Momentum Charts. We also expose some API from D3 as properties of config in Momentum Charts components.

SVG

SVG defines vector-based graphics in XML format. Momentum Charts is designed based on SVG structor. You can also access SVG native doms inside Board and Shape with the API.

Web Component

Web Components are a set of features that provide a standard component model for the Web allowing for encapsulation and interoperability of individual HTML elements. There is a built in convert system for Web Component in Momentum. All the files whose name is start with '_' are used for this system.

API

Components

utils

Template

Template enables engineers to develop some reusable persets of charts. This also help shows full design example from Mementum Design system.

Contribute

See the contributing file!

PRs accepted.

License

© 2014-2020 Cisco and/or its affiliates. All Rights Reserved.