@types/highcharts-ng
TypeScript icon, indicating that this package has built-in type declarations

0.0.38 • Public • Published

Installation

npm install --save @types/highcharts-ng

Summary

This package contains type definitions for highcharts-ng (https://github.com/pablojim/highcharts-ng).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/highcharts-ng.

index.d.ts

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;
    }
}

Additional Details

Credits

These definitions were written by Scott Hatcher.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/highcharts-ng

Weekly Downloads

9,202

Version

0.0.38

License

MIT

Unpacked Size

6.55 kB

Total Files

5

Last publish

Collaborators

  • types