Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
picasso.js
Advanced tools
A charting library streamlined for building visualizations for the Qlik Sense Analytics platform.
A charting library streamlined for building visualizations for the Qlik Sense Analytics platform.
Visit qlik.dev for documentation and examples.
npm install picasso.js
import picasso from 'picasso.js';
picasso.chart({
element: document.querySelector('#container'),
settings: {
scales: {
budget: { max: 5000, min: 0 },
sales: { max: 11000, min: 3000, invert: true },
},
components: [
{
type: 'axis',
scale: 'budget',
layout: {
dock: 'bottom',
},
},
{
type: 'axis',
scale: 'sales',
layout: {
dock: 'left',
},
},
{
type: 'point',
data: [
{ sales: 7456, margin: 0.3, budget: 4557 },
{ sales: 5603, margin: 0.7, budget: 2234 },
{ sales: 8603, margin: 0.6, budget: 4121 },
{ sales: 4562, margin: 0.4, budget: 1234 },
{ sales: 9873, margin: 0.9, budget: 3453 },
],
settings: {
x: {
scale: 'budget',
fn() {
return this.scale(this.data.value.budget);
},
},
y: {
scale: 'sales',
fn() {
return this.scale(this.data.value.sales);
},
},
size() {
return this.data.value.margin;
},
},
},
],
},
});
2.2.2 (2023-03-02)
Note: Version bump only for package picasso.js
FAQs
A charting library streamlined for building visualizations for the Qlik Sense Analytics platform.
The npm package picasso.js receives a total of 7,652 weekly downloads. As such, picasso.js popularity was classified as popular.
We found that picasso.js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.