
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
@types/highcharts-ng
Advanced tools
TypeScript definitions for highcharts-ng
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.
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 840 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 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.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.