Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@types/highcharts-ng

Package Overview
Dependencies
1
Maintainers
1
Versions
17
Issues
File Explorer

Advanced tools

@types/highcharts-ng

TypeScript definitions for highcharts-ng

    0.0.35ts3.6ts3.7ts3.8ts3.9ts4.0ts4.1ts4.2ts4.3ts4.4ts4.5ts4.6ts4.7ts4.8ts4.9ts5.0latest
    GitHub

Version published
Maintainers
1
Weekly downloads
1,095
decreased by-91.2%

Weekly downloads

Readme

Source

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

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

Additional Details

  • Last updated: Thu, 08 Jul 2021 14:22:51 GMT
  • Dependencies: @types/highcharts
  • Global values: none

Credits

These definitions were written by Scott Hatcher.

FAQs

Last updated on 08 Jul 2021

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.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc