
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@praxisui/charts
Advanced tools
Metadata-driven charts library for Praxis UI Angular with engine adapters and Apache ECharts as the initial renderer.
Metadata-driven charting for Praxis UI Angular, with a stable public contract and an engine adapter boundary.
@praxisui/* runtimePraxisChartComponent for standalone chart renderingloading, empty and error statesx-ui.chart contracts into Praxis widget/page structuresnpm i @praxisui/charts
Peer dependencies (Angular v20):
@angular/core ^20.0.0@angular/common ^20.0.0@praxisui/core ^1.0.0-beta.68Runtime dependency included by this package:
echarts ^6.0.0import { Component } from '@angular/core';
import {
PraxisChartComponent,
type PraxisChartPointEvent,
type PraxisChartConfig,
} from '@praxisui/charts';
@Component({
selector: 'app-chart-demo',
standalone: true,
imports: [PraxisChartComponent],
template: `
<praxis-chart
[config]="config"
(pointClick)="onPointClick($event)"
></praxis-chart>
`,
})
export class ChartDemoComponent {
readonly config: PraxisChartConfig = {
title: 'Employees by Department',
type: 'bar',
dataSource: {
kind: 'local',
items: [
{ department: 'Engineering', total: 18 },
{ department: 'Finance', total: 6 },
{ department: 'HR', total: 4 },
],
},
axes: {
x: {
field: 'department',
type: 'category',
label: 'Department',
},
y: {
field: 'total',
type: 'value',
label: 'Employees',
},
},
series: [
{
id: 'employees',
type: 'bar',
metric: {
field: 'total',
aggregation: 'sum',
},
name: 'Employees',
},
],
};
onPointClick(event: PraxisChartPointEvent) {
console.log('chart point', event);
}
}
PraxisChartConfig, PraxisChartDataSource and PraxisChartPointEventSee the public exports in projects/praxis-charts/src/public-api.ts.
This first published version is focused on the core runtime:
praxis-chart componentFAQs
Metadata-driven charts library for Praxis UI Angular with engine adapters and Apache ECharts as the initial renderer.
We found that @praxisui/charts demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.