
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
@cerner/carbon-graphs
Advanced tools
A graphing library built using d3 based on Cerner design standards
A vanilla JavaScript graphing library built using d3 based on Cerner design standards.
npm i @cerner/carbon-graphs --save-dev
To create a graph with carbon, first let's create a graph configuration object and use it to initialize that canvas:
const GRAPH_DATA = {
bindTo: "#root",
axis: {
x: {
show: true,
label: "x-axis label",
lowerLimit: 0,
upperLimit: 100
},
y: {
show: true,
label: "y-axis label",
lowerLimit: 0,
upperLimit: 10,
},
}
};
var canvas = Carbon.api.graph(GRAPH_DATA);
Let's create a sample dataset to plot:
const CONTENT_DATA1 = {
key: "uid_1",
label: {
display: "Dataset A"
},
values: [
{
x: 10,
y: 9
},
{
x: 45,
y: 3
},
{
x: 60,
y: 7
},
{
x: 77,
y: 8
},
{
x: 94,
y: 2
}
]
};
The data can now by plotted by as a line graph by using the following:
canvas.loadContent(Carbon.api.line(CONTENT_DATA1));
This results in the following graph:
The following graph types can be plotted using Carbon:
Copyright 2017 - present Cerner Innovation, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
FAQs
A graphing library built using d3 based on Cerner design standards
The npm package @cerner/carbon-graphs receives a total of 13 weekly downloads. As such, @cerner/carbon-graphs popularity was classified as not popular.
We found that @cerner/carbon-graphs 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
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.