@types/highcharts-ng
Advanced tools
Weekly downloads
Readme
npm install --save @types/highcharts-ng
This package contains type definitions for highcharts-ng (https://github.com/pablojim/highcharts-ng).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/highcharts-ng.
// Type definitions for highcharts-ng 0.0.8
// Project: https://github.com/pablojim/highcharts-ng
// Definitions by: Scott Hatcher <https://github.com/scatcher>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import { ChartObject, IndividualSeriesOptions, Options } from "highcharts";
declare global {
interface HighChartsNGConfig {
options: Options;
//The below properties are watched separately for changes.
//Series object (optional) - a list of series using normal highcharts series options.
series?: IndividualSeriesOptions[] | undefined;
//Title configuration (optional)
title?: {
text?: string | undefined;
} | undefined;
//Boolean to control showng loading status on chart (optional)
//Could be a string if you want to show specific loading text.
loading?: boolean | string | undefined;
//Configuration for the xAxis (optional). Currently only one x axis can be dynamically controlled.
//properties currentMin and currentMax provied 2-way binding to the chart's maximimum and minimum
xAxis?: {
currentMin?: number | undefined;
currentMax?: number | undefined;
title?: { text?: string | undefined } | undefined
} | undefined;
//Whether to use HighStocks instead of HighCharts (optional). Defaults to false.
useHighStocks?: boolean | undefined;
//size (optional) if left out the chart will default to size of the div or something sensible.
size?: {
width?: number | undefined;
height?: number | undefined;
} | undefined;
//function (optional) - setup some logic for the chart
func?: ((chart: ChartObject) => void) | undefined;
//no data text (optional) to show if all series are empty
noData?: string | undefined;
}
//Instantiated Chart
interface HighChartsNGChart extends HighChartsNGConfig {
//This is a simple way to access all the Highcharts API that is not currently managed by this directive.
getHighcharts(): ChartObject;
}
}
These definitions were written by Scott Hatcher.
FAQs
TypeScript definitions for highcharts-ng
The npm package @types/highcharts-ng receives a total of 807 weekly downloads. As such, @types/highcharts-ng popularity was classified as not popular.
We found that @types/highcharts-ng demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.