Skip to main content
highcharts-1-basic-line-chart Sub-skill of highcharts: 1. Basic Line Chart (+2).
Jump to install Skills Marketplace Discover and explore AI skills built by the community.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Copy promptShow prompt details A direct command skips the review prompt. Inspect the source before running it.
npx skills add https://github.com/vamseeachanta/workspace-hub --skill highcharts-1-basic-line-chartThe command stays on one line. Scroll horizontally to inspect it before copying.
Prefer a local copy? Download the files currently available to SkillsMP.
Download Zip Downloading... Related occupations SOC
Based on SOC occupation classification
More from this repository Write outbound email and external messages in Vamsee Achanta's voice — a subtle offer to help, never bold or rash claims. Load before drafting ANY email, LinkedIn/Collide reply, proposal note, or outreach sent under his name.
Save/publish analysis or computation results from ANY ecosystem repo to Hugging Face as a queryable, viewer-renderable dataset. Use when the user wants to "save results to hugging face", "publish dataset to HF", "hugging face data saving", "save analysis results", "hf dataset", "make results queryable", or "render via datasets-server API". Reshapes nested results into flat parquet tables, writes a dataset card with a viewer `configs:` block and provenance, applies license/public-vs-private routing, enforces a domain data-quality gate (faithful-to-source != correct), publishes to `aceengineer/<repo>-<projection>`, and verifies via the datasets-server API.
Clone, create, fork, configure, and manage GitHub repositories. Manage remotes, secrets, releases, and workflows. Works with gh CLI or falls back to git + GitHub REST API via curl.
name highcharts-1-basic-line-chart description Sub-skill of highcharts: 1. Basic Line Chart (+2). version 1.0.0 category data-visualization type reference scripts_exempt true
1. Basic Line Chart (+2)
1. Basic Line Chart
<!DOCTYPE html >
<html >
<head >
<script src ="https://code.highcharts.com/highcharts.js" > </script >
</head >
<body >
<div id ="container" style ="width: 100%; height: 400px;" >
</div >
<script >
Highcharts .chart ('container' , {
title : {
text : 'Monthly Sales'
},
subtitle : {
text : 'Source: Sales Department'
},
xAxis : {
categories : ['Jan' , 'Feb' , 'Mar' , 'Apr' , 'May' , 'Jun' ]
},
yAxis : {
title : {
text : 'Sales (units)'
}
},
series : [{
name : 'Product A' ,
data : [29.9 , 71.5 , 106.4 , 129.2 , 144.0 , 176.0 ]
}],
credits : {
enabled : false
}
});
</script >
</body >
</html >
2. Column Chart with Multiple Series Highcharts .chart ('container' , {
chart : {
type : 'column'
},
title : {
text : 'Quarterly Revenue Comparison'
},
xAxis : {
categories : ['Q1' , 'Q2' , 'Q3' , 'Q4' ]
},
yAxis : {
min : 0 ,
title : {
text : 'Revenue (thousands)'
}
},
tooltip : {
headerFormat : '<span style="font-size:10px">{point.key}</span><table>' ,
pointFormat : '<tr><td style="color:{series.color};padding:0">{series.name}: </td>' +
'<td style="padding:0"><b>{point.y:.1f}</b></td></tr>' ,
footerFormat : '</table>' ,
shared : true ,
useHTML : true
},
plotOptions : {
column : {
pointPadding : 0.2 ,
borderWidth : 0
}
},
series : [{
name : '2023' ,
data : [49.9 , 71.5 , 106.4 , 129.2 ]
}, {
name : '2024' ,
data : [83.6 , 78.8 , 98.5 , 93.4 ]
}]
});
3. Pie Chart with Drilldown Highcharts .chart ('container' , {
chart : {
type : 'pie'
},
title : {
text : 'Browser Market Share'
},
tooltip : {
pointFormat : '{series.name}: <b>{point.percentage:.1f}%</b>'
},
accessibility : {
point : {
valueSuffix : '%'
}
},
plotOptions : {
pie : {
allowPointSelect : true ,
cursor : 'pointer' ,
dataLabels : {
enabled : true ,
format : '<b>{point.name}</b>: {point.percentage:.1f} %'
},
showInLegend : true
}
},
series : [{
name : 'Share' ,
colorByPoint : true ,
data : [{
name : 'Chrome' ,
y : 61.41 ,
sliced : true ,
selected : true
}, {
name : 'Firefox' ,
y : 11.84
}, {
name : 'Edge' ,
y : 4.67
}, {
name : 'Safari' ,
y : 4.18
}, {
name : 'Other' ,
y : 17.9
}]
}]
});