|:------------------------------------------------------:|
| ⚡︎ B o x L a n g ⚡︎
| Dynamic : Modular : Productive
|:------------------------------------------------------:|
📊 A comprehensive charting module for BoxLang that brings beautiful, interactive charts to your web applications
This module provides powerful chart generation capabilities to the BoxLang language, making it easy to create stunning data visualizations with minimal code.
- Features
- Installation
- Quick Start
- Chart Types
- Choosing the Right Chart Type
- Components Reference
- Examples
- Advanced Features
- Troubleshooting
- Contributing
- Support & Resources
- License
- 🎨 10 Chart Types: pie, bar, line, doughnut, radar, polar area, area, horizontal bar, scatter, and bubble charts
- 📱 Responsive Design: Charts automatically adapt to container sizes and screen dimensions
- 🎯 Easy to Use: Simple BoxLang component syntax with nested data structure
- 🎭 Highly Customizable: Extensive styling options including colors, fonts, axes, and grid lines
- 📊 Advanced Features: Stacked/clustered series, axis titles, custom scales, and tooltips
- 🔧 Zero Configuration: Sensible defaults get you started quickly
- 💪 Production Ready: Built by Ortus Solutions with enterprise-grade quality
- BoxLang 1.0.0 or higher
- Web support enabled (for
htmlHead()BIF)
box install bx-chartsThe module will automatically register and be available as bxcharts in your BoxLang applications.
If you are using a URL rewriting mechanism (like .htaccess for Apache or URL rewrite rules in Nginx), ensure that requests to static assets (like JavaScript and CSS files) are properly routed to the boxlang_modules/bx-charts/assets/ directory. Also, make sure you are not rewriting the following directory from which assets are delivered from the module:`
/bxModules/bxCharts/public/index.bxm
The following must passthrough with no rewrites.
For local development and testing of the module itself:
# Clone the repository
git clone https://github.com/ortus-boxlang/bx-charts.git
cd bx-charts
# Set up local development environment
./setup.sh
# Install dependencies
box install
npm install
# Start the server for testing
box startThis creates a symbolic link in boxlang_modules/bx-charts for local module development and testing.
Here's how to create your first chart in just a few lines:
<bx:chart title="My First Chart" chartwidth="400" chartheight="300">
<bx:chartseries type="pie" colorlist="FF6384,36A2EB,FFCE56">
<bx:chartdata item="Red" value="300">
<bx:chartdata item="Blue" value="50">
<bx:chartdata item="Yellow" value="100">
</bx:chartseries>
</bx:chart>That's it! 🎉 You now have a beautiful, interactive pie chart.
The module supports 10 different chart types, each optimized for specific data visualization needs:
Perfect for showing proportions and percentages of a whole.
- Best for: Market share, budget allocation, survey results
- Data structure: Single series with multiple data points
Great for comparing values across categories.
- Best for: Comparing quantities, showing rankings, temporal data
- Features: Supports stacking and clustering
- Data structure: Single or multiple series
Ideal for showing trends over time.
- Best for: Time series, trend analysis, continuous data
- Features: Multiple series support, customizable markers
- Data structure: One or more series with sequential data points
Similar to pie charts but with a hole in the center.
- Best for: Proportions with emphasis on total value
- Visual style: Modern, clean look with central focus area
Shows multivariate data on a circular grid.
- Best for: Comparing multiple variables, skill assessments, product comparisons
- Data structure: Multiple data points forming a polygon
Like a pie chart but with varying radius.
- Best for: Showing proportions where magnitude matters
- Visual style: Circular sectors with different radii
Line chart with filled area underneath.
- Best for: Showing volume over time, cumulative data
- Features: Emphasizes magnitude of change
Bar chart with horizontal orientation.
- Best for: Long category names, rankings, comparisons
- Layout: Left-to-right instead of bottom-to-top
Shows relationship between two variables.
- Best for: Correlation analysis, distribution patterns
- Data structure: X-Y coordinate pairs
Shows three-dimensional data using x, y coordinates and bubble size.
- Best for: Multi-dimensional data analysis, comparative metrics, portfolio analysis
- Data structure: X-Y coordinate pairs with radius (r) for bubble size
- Usage: Use
x,y, andrattributes in<bx:chartdata>instead of justvalue
Selecting the appropriate chart type is crucial for effective data visualization. Use this guide to choose the best chart for your data:
| Your Goal | Recommended Chart Type | Why |
|---|---|---|
| Show parts of a whole | Pie or Doughnut | Best for displaying percentage distribution of 3-6 categories |
| Compare values across categories | Bar or Horizontal Bar | Clear visual comparison of discrete values |
| Show trends over time | Line or Area | Excellent for time series and continuous data |
| Compare multiple variables | Radar | Perfect for multi-dimensional comparisons (e.g., product features) |
| Show proportions with magnitude | Polar Area | Like pie chart but size indicates importance |
| Display correlation | Scatter | Shows relationship between two variables |
| Show 3D relationships | Bubble | Displays three metrics simultaneously (x, y, size) |
| Compare with long labels | Horizontal Bar | Better readability for lengthy category names |
| Emphasize volume/magnitude | Area | Highlights total quantity over time |
What do you want to visualize?
├─ Parts of a whole (percentages)?
│ ├─ Simple distribution → Pie Chart 🥧
│ └─ Modern look with center space → Doughnut Chart 🍩
│
├─ Comparing values?
│ ├─ Short category names → Bar Chart 📊
│ ├─ Long category names → Horizontal Bar Chart ↔️
│ └─ Multiple variables per item → Radar Chart 🕸️
│
├─ Changes over time?
│ ├─ Single or few metrics → Line Chart 📈
│ └─ Emphasize volume/total → Area Chart 🏔️
│
├─ Relationships between variables?
│ ├─ Two variables (x, y) → Scatter Plot 🔵
│ └─ Three variables (x, y, size) → Bubble Chart 🫧
│
└─ Proportions with varying magnitude?
└─ Polar Area Chart 🎯
| Don't Use | When | Use Instead |
|---|---|---|
| Pie Chart | More than 6 categories | Bar Chart |
| Line Chart | Comparing unrelated categories | Bar Chart |
| 3D Effects | Accuracy is important | 2D charts (all types) |
| Radar Chart | Categories aren't comparable | Bar or Column Chart |
| Bubble Chart | Only 2 dimensions of data | Scatter Plot |
- Pie/Doughnut Charts: Limit to 5-6 slices maximum. Order slices by size for better readability.
- Bar Charts: Always start the Y-axis at zero to avoid misleading visualizations.
- Line Charts: Use for continuous data only. Avoid for unrelated categories.
- Radar Charts: Ensure all axes use the same scale and are comparable metrics.
- Bubble Charts: Make sure bubble sizes are clearly distinguishable. Use radius (r) values that create visible differences.
- Color Selection: Use consistent color schemes. Avoid red/green combinations (color blindness).
The main container component that renders charts
| Attribute | Type | Default | Description |
|---|---|---|---|
title |
string | "" | Chart title displayed at the top |
chartWidth |
number | 400 | Chart width in pixels |
chartHeight |
number | 300 | Chart height in pixels |
backgroundColor |
string | "#ffffff" | Background color (hex or named color) |
showLegend |
boolean | true | Display legend for multi-series charts |
| Attribute | Type | Default | Description |
|---|---|---|---|
responsive |
boolean | true | Enable responsive resizing |
maintainAspectRatio |
boolean | true | Maintain width/height ratio |
aspectRatio |
number | 2 | Aspect ratio (width/height) |
resizeDelay |
number | 0 | Delay before resize (ms) |
| Attribute | Type | Default | Description |
|---|---|---|---|
font |
string | - | Font family for chart text |
fontBold |
boolean | false | Bold text |
fontItalic |
boolean | false | Italic text |
fontSize |
number | 12 | Font size in pixels |
foregroundColor |
string | "#333333" | Text color |
dataBackgroundColor |
string | - | Data area background color |
borderColor |
string | - | Border color for chart elements (hex or named color). Applies to: bar, line, area, pie, doughnut, radar, polarArea, bubble |
borderWidth |
number | varies | Border width in pixels. Defaults: 1 (bar), 2 (pie/doughnut/polarArea/bubble), 3 (line/area/radar). Applies to: bar, line, area, pie, doughnut, radar, polarArea, bubble |
borderRadius |
number | 0 | Border radius in pixels for rounded corners. Applies to: bar, horizontalbar only |
| Attribute | Type | Default | Description |
|---|---|---|---|
xAxisTitle |
string | "" | X-axis title |
yAxisTitle |
string | "" | Y-axis title |
showXGridlines |
boolean | false | Show X-axis grid lines |
showYGridlines |
boolean | true | Show Y-axis grid lines |
showXLabel |
boolean | true | Display X-axis labels |
scaleFrom |
number | - | Y-axis minimum value |
scaleTo |
number | - | Y-axis maximum value |
sortXAxis |
boolean | false | Sort labels alphabetically |
| Attribute | Type | Default | Description |
|---|---|---|---|
showBorder |
boolean | false | Display chart border |
showMarkers |
boolean | true | Show data point markers |
showTooltip |
boolean | true | Enable tooltips |
markerSize |
number | 4 | Marker size in pixels |
show3D |
boolean | false | 3D appearance (limited support) |
| Attribute | Type | Default | Description |
|---|---|---|---|
seriesPlacement |
string | "default" | Series layout: "default", "cluster", "stacked" |
labelFormat |
string | "" | Y-axis label format (use {value} placeholder) |
categoryLabelPositions |
string | "horizontal" | Label rotation: "horizontal", "up_45", "up_90", "down_45", "down_90", "vertical" |
url |
string | "" | URL to open when clicking data points |
Defines a data series within a chart. Must be nested inside <bx:chart>.
| Attribute | Type | Required | Description |
|---|---|---|---|
type |
string | ✅ Yes | Chart type: "pie", "bar", "line", "doughnut", "radar", "polarArea", "area", "horizontalbar", "scatter", "bubble" |
colorlist |
string | No | Comma-separated color list (hex or named colors) |
serieslabel |
string | No | Label for this data series |
borderColor |
string | No | Border color for this series (hex or named color). Overrides chart-level borderColor. Not applicable for scatter charts. |
borderWidth |
number | No | Border width in pixels for this series. Overrides chart-level borderWidth. Not applicable for scatter charts. |
borderRadius |
number | No | Border radius in pixels for this series. Only applicable for bar and horizontalbar charts. Overrides chart-level borderRadius. |
query |
query | No | Query object to use as data source. When provided, no child chartData components are required |
itemColumn |
string | No | Name of the query column containing labels. Default: "item" |
valueColumn |
string | No | Name of the query column containing values. Default: "value" |
data |
array | No | Array data source. Can be array of structs [{item:"x",value:123}] or array of arrays [["x",123]]. For bubble charts use x, y, r instead of value |
Example with chartData components:
<bx:chartseries type="bar" colorlist="FF6384,36A2EB,FFCE56" serieslabel="Sales Data">
<bx:chartdata item="Product A" value="150">
<bx:chartdata item="Product B" value="200">
</bx:chartseries>
Example with query:
<bx:chartseries type="bar" query="#myQuery#" itemColumn="category" valueColumn="amount" serieslabel="Sales Data">
</bx:chartseries>
Example with array of structs:
<bx:chartseries type="pie"
data="#[
{item:'Product A', value:100},
{item:'Product B', value:200},
{item:'Product C', value:150}
]#"
serieslabel="Sales Data">
</bx:chartseries>
Example with array of arrays (positional):
<bx:chartseries type="bar"
data="#[
['Product A', 100],
['Product B', 200],
['Product C', 150]
]#"
serieslabel="Sales Data">
</bx:chartseries>
Example with bubble chart (array of structs):
<bx:chartseries type="bubble"
data="#[
{item:'Point A', x:10, y:20, r:5},
{item:'Point B', x:15, y:25, r:8}
]#"
serieslabel="Data Points">
</bx:chartseries>
Defines individual data points within a series. Must be nested inside <bx:chartseries>.
| Attribute | Type | Required | Description |
|---|---|---|---|
item |
string | ✅ Yes | Data point label/name |
value |
number | ✅ Yes* | Data point value (*Required for all chart types except bubble) |
x |
number | X-coordinate (required for bubble charts) | |
y |
number | Y-coordinate (required for bubble charts) | |
r |
number | Bubble radius (required for bubble charts) |
Standard Example:
<bx:chartdata item="Product A" value="150">
<bx:chartdata item="Product B" value="200">
Bubble Chart Example:
<bx:chartdata item="Product A" x="20" y="30" r="15">
<bx:chartdata item="Product B" x="40" y="10" r="10">
<bx:chart title="Memory Usage Distribution"
chartwidth="400" chartheight="300"
showlegend="true">
<bx:chartseries type="pie" colorlist="00ff00,0000ff,ff0000,ffff00"
serieslabel="Memory Usage">
<bx:chartdata item="Free Memory" value="512">
<bx:chartdata item="Used Memory" value="256">
<bx:chartdata item="Reserved Memory" value="128">
<bx:chartdata item="Cache Memory" value="64">
</bx:chartseries>
</bx:chart>💡 Use Case: Perfect for showing how a total is divided into parts, like disk space usage or budget allocation.
<bx:chart title="Performance Metrics"
chartwidth="500" chartheight="350"
xaxistitle="Metrics" yaxistitle="Count"
showxgridlines="false" showygridlines="true">
<bx:chartseries
type="bar"
colorlist="131cd7,ED2939,gray,d47f00"
serieslabel="Performance Data">
<bx:chartdata item="Hits" value="150">
<bx:chartdata item="Misses" value="25">
<bx:chartdata item="Garbage Collections" value="10">
<bx:chartdata item="Evictions" value="5">
</bx:chartseries>
</bx:chart>💡 Use Case: Great for comparing different categories or metrics at a glance.
<bx:chart title="Website Traffic Over Time"
chartwidth="600" chartheight="300"
xaxistitle="Day" yaxistitle="Visitors"
showygridlines="true">
<bx:chartseries type="line" colorlist="36A2EB"
serieslabel="Daily Visitors">
<bx:chartdata item="Monday" value="1200">
<bx:chartdata item="Tuesday" value="1350">
<bx:chartdata item="Wednesday" value="1100">
<bx:chartdata item="Thursday" value="1450">
<bx:chartdata item="Friday" value="1800">
<bx:chartdata item="Saturday" value="2100">
<bx:chartdata item="Sunday" value="1900">
</bx:chartseries>
</bx:chart>💡 Use Case: Ideal for displaying trends and patterns over time.
<bx:chart title="Browser Market Share"
chartwidth="400" chartheight="400"
showlegend="true">
<bx:chartseries type="doughnut"
colorlist="FF6384,36A2EB,FFCE56,4BC0C0,9966FF"
serieslabel="Browser Usage">
<bx:chartdata item="Chrome" value="65">
<bx:chartdata item="Firefox" value="18">
<bx:chartdata item="Safari" value="12">
<bx:chartdata item="Edge" value="4">
<bx:chartdata item="Others" value="1">
</bx:chartseries>
</bx:chart>💡 Use Case: Similar to pie charts but with a modern look, great for dashboards.
<bx:chart title="Server Load Over Time"
chartwidth="600" chartheight="350"
xaxistitle="Time" yaxistitle="CPU Usage (%)"
showxgridlines="true" showygridlines="true"
scalefrom="0" scaleto="100"
fontsize="14" fontbold="true">
<bx:chartseries type="area" colorlist="36A2EB"
serieslabel="CPU Load">
<bx:chartdata item="00:00" value="25">
<bx:chartdata item="04:00" value="15">
<bx:chartdata item="08:00" value="65">
<bx:chartdata item="12:00" value="85">
<bx:chartdata item="16:00" value="75">
<bx:chartdata item="20:00" value="45">
</bx:chartseries>
</bx:chart>💡 Use Case: Shows volume or magnitude over time with emphasis on total quantity.
<bx:chart title="Sales Performance"
chartwidth="600" chartheight="350"
xaxistitle="Products" yaxistitle="Units Sold"
showygridlines="true"
bordercolor="##2c3e50">
<bx:chartseries type="bar"
colorlist="3498db"
serieslabel="Units Sold">
<bx:chartdata item="Product A" value="145">
<bx:chartdata item="Product B" value="220">
<bx:chartdata item="Product C" value="185">
<bx:chartdata item="Product D" value="310">
</bx:chartseries>
</bx:chart>💡 Use Case: Add professional borders to chart elements. Works with bar, line, area, pie, doughnut, radar, polarArea, and bubble charts.
<bx:chart title="Modern Sales Dashboard"
chartwidth="600" chartheight="350"
xaxistitle="Products" yaxistitle="Revenue"
showygridlines="true"
bordercolor="##e74c3c"
borderwidth="3"
borderradius="10">
<bx:chartseries type="bar"
colorlist="3498db,9b59b6,2ecc71,f39c12"
serieslabel="Q4 Revenue">
<bx:chartdata item="Product A" value="45000">
<bx:chartdata item="Product B" value="62000">
<bx:chartdata item="Product C" value="38000">
<bx:chartdata item="Product D" value="71000">
</bx:chartseries>
</bx:chart>💡 Use Case: Create modern, polished bar charts with rounded corners and custom border styling. borderRadius only applies to bar and horizontalbar chart types. borderWidth applies to bar, line, area, pie, doughnut, radar, polarArea, and bubble charts.
<bx:chart title="Quarterly Performance Comparison"
chartwidth="700" chartheight="400"
xaxistitle="Quarter" yaxistitle="Revenue ($K)"
showlegend="true"
showygridlines="true">
<bx:chartseries type="bar"
colorlist="3498db"
serieslabel="Sales"
bordercolor="##2980b9"
borderwidth="2"
borderradius="6">
<bx:chartdata item="Q1" value="125">
<bx:chartdata item="Q2" value="158">
<bx:chartdata item="Q3" value="142">
<bx:chartdata item="Q4" value="189">
</bx:chartseries>
<bx:chartseries type="bar"
colorlist="e74c3c"
serieslabel="Expenses"
bordercolor="##c0392b"
borderwidth="3"
borderradius="4">
<bx:chartdata item="Q1" value="95">
<bx:chartdata item="Q2" value="102">
<bx:chartdata item="Q3" value="98">
<bx:chartdata item="Q4" value="115">
</bx:chartseries>
</bx:chart>💡 Use Case: Create multi-series charts where each series has its own distinct border styling. Series-level border attributes (bordercolor, borderwidth, borderradius) override chart-level defaults, allowing fine-grained control over visual appearance. Perfect for comparing multiple data sets with different visual emphasis.
<bx:chart title="Department Budgets"
chartwidth="500" chartheight="350"
xaxistitle="Budget ($1000s)" yaxistitle="Department"
showygridlines="true">
<bx:chartseries type="horizontalbar"
colorlist="FF6384,36A2EB,FFCE56,4BC0C0"
serieslabel="Budget Allocation">
<bx:chartdata item="IT Department" value="850">
<bx:chartdata item="Marketing" value="620">
<bx:chartdata item="Sales" value="950">
<bx:chartdata item="Human Resources" value="340">
</bx:chartseries>
</bx:chart>💡 Use Case: Perfect when you have long category names or want to emphasize horizontal comparison.
<bx:chart title="Quarterly Sales by Region"
chartwidth="600" chartheight="400"
xaxistitle="Quarter" yaxistitle="Sales ($1000s)"
showygridlines="true"
seriesplacement="stacked">
<bx:chartseries type="bar" colorlist="FF6384"
serieslabel="North Region">
<bx:chartdata item="Q1" value="120">
<bx:chartdata item="Q2" value="135">
<bx:chartdata item="Q3" value="145">
<bx:chartdata item="Q4" value="160">
</bx:chartseries>
<bx:chartseries type="bar" colorlist="36A2EB"
serieslabel="South Region">
<bx:chartdata item="Q1" value="95">
<bx:chartdata item="Q2" value="110">
<bx:chartdata item="Q3" value="105">
<bx:chartdata item="Q4" value="125">
</bx:chartseries>
</bx:chart>💡 Use Case: Shows both individual values and totals across categories. Perfect for comparing parts of a whole across different groups.
BoxLang Charts can use query objects as data sources, eliminating the need for manual chartData components.
<bx:script>
// Create a query with sales data
salesQuery = queryNew(
"product,revenue",
"varchar,integer",
[
{ "product": "Product A", "revenue": 15000 },
{ "product": "Product B", "revenue": 23000 },
{ "product": "Product C", "revenue": 18000 },
{ "product": "Product D", "revenue": 12000 }
]
);
</bx:script>
<bx:chart title="Product Revenue"
chartwidth="600" chartheight="400"
xaxistitle="Products" yaxistitle="Revenue ($)"
showygridlines="true">
<bx:chartseries type="bar"
query="#salesQuery#"
itemColumn="product"
valueColumn="revenue"
colorlist="36A2EB"
serieslabel="Revenue">
</bx:chartseries>
</bx:chart>💡 Use Case: Perfect for database-driven charts where data comes from queries. Reduces boilerplate code and makes charts more maintainable.
Query Requirements:
- Query must contain at least one record
itemColumnmust exist in the query (defaults to "item")valueColumnmust exist in the query (defaults to "value")
BoxLang Charts also support arrays as data sources, providing flexibility when working with JSON data or dynamically generated data.
Array of Structs Format:
<bx:chart title="Sales by Product"
chartwidth="600" chartheight="400"
xaxistitle="Products" yaxistitle="Revenue ($)">
<bx:chartseries type="bar"
data="#[
{item:'Product A', value:15000},
{item:'Product B', value:23000},
{item:'Product C', value:18000}
]#"
colorlist="36A2EB"
serieslabel="Revenue">
</bx:chartseries>
</bx:chart>Array of Arrays Format (Positional):
<bx:chart title="Sales by Product"
chartwidth="600" chartheight="400">
<bx:chartseries type="pie"
data="#[
['Product A', 15000],
['Product B', 23000],
['Product C', 18000]
]#"
colorlist="FF6384,36A2EB,FFCE56">
</bx:chartseries>
</bx:chart>Bubble Chart with Array of Structs:
<bx:chart title="Portfolio Analysis"
chartwidth="600" chartheight="400"
xaxistitle="Risk" yaxistitle="Return">
<bx:chartseries type="bubble"
data="#[
{item:'Stock A', x:20, y:15, r:10},
{item:'Stock B', x:40, y:25, r:15},
{item:'Bond C', x:10, y:8, r:5}
]#"
colorlist="FF6384,36A2EB,FFCE56">
</bx:chartseries>
</bx:chart>Bubble Chart with Array of Arrays:
<bx:chartseries type="bubble"
data="#[
['Stock A', 20, 15, 10],
['Stock B', 40, 25, 15],
['Bond C', 10, 8, 5]
]#">
</bx:chartseries>💡 Use Case: Perfect for working with JSON data from APIs, dynamically generated data, or when you want a compact data format without the overhead of chartData components.
Array Data Requirements:
- Array must not be empty
- All elements must use the same format (all structs or all arrays)
- For standard charts: structs need
itemandvaluekeys, arrays need 2 elements[item, value] - For bubble charts: structs need
item,x,y,rkeys, arrays need 4 elements[item, x, y, r]
Dynamic Array Example:
<bx:script>
// Build data array dynamically
chartData = [];
for (i = 1; i <= 5; i++) {
arrayAppend(chartData, {
item: "Item " & i,
value: randRange(100, 500)
});
}
</bx:script>
<bx:chart title="Dynamic Data">
<bx:chartseries type="bar" data="#chartData#">
</bx:chartseries>
</bx:chart><bx:chart title="Skills Assessment"
chartwidth="500" chartheight="500"
showlegend="true">
<bx:chartseries type="radar" colorlist="FF6384"
serieslabel="Current Skills">
<bx:chartdata item="JavaScript" value="85">
<bx:chartdata item="BoxLang" value="95">
<bx:chartdata item="Database" value="75">
<bx:chartdata item="DevOps" value="70">
<bx:chartdata item="Security" value="80">
</bx:chartseries>
</bx:chart>💡 Use Case: Excellent for showing multiple variables for comparison, like skill assessments or product features.
<bx:chart title="Response Time vs Throughput"
chartwidth="600" chartheight="400"
xaxistitle="Response Time (ms)" yaxistitle="Requests/sec"
showxgridlines="true" showygridlines="true"
markersize="8">
<bx:chartseries type="scatter" colorlist="9966FF"
serieslabel="Performance Data">
<bx:chartdata item="Point 1" value="120">
<bx:chartdata item="Point 2" value="85">
<bx:chartdata item="Point 3" value="200">
<bx:chartdata item="Point 4" value="150">
<bx:chartdata item="Point 5" value="95">
</bx:chartseries>
</bx:chart>💡 Use Case: Shows relationships between two variables, useful for correlation analysis.
Bubble charts display three dimensions of data using x and y coordinates plus bubble size.
<bx:chart title="Product Portfolio Analysis"
chartwidth="600" chartheight="400"
xaxistitle="Market Share (%)" yaxistitle="Revenue ($M)"
showxgridlines="true" showygridlines="true">
<bx:chartseries type="bubble"
colorlist="FF6384,36A2EB,FFCE56,4BC0C0"
serieslabel="Product Performance">
<bx:chartdata item="Product A" x="20" y="30" r="15">
<bx:chartdata item="Product B" x="40" y="10" r="10">
<bx:chartdata item="Product C" x="30" y="20" r="25">
<bx:chartdata item="Product D" x="15" y="35" r="8">
</bx:chartseries>
</bx:chart>💡 Use Case: Perfect for displaying three-dimensional data where the third dimension (bubble size) represents metrics like customer satisfaction, investment size, or population.
Note: For bubble charts, use x, y, and r attributes instead of value in <bx:chartdata> components.
BoxLang Charts support responsive sizing that adapts to container width and screen sizes. This is ideal for responsive web applications and dashboards.
<bx:chart title="Responsive Dashboard Chart"
chartwidth="800" chartheight="400"
responsive="true"
maintainAspectRatio="true"
aspectRatio="2"
xaxistitle="Month" yaxistitle="Revenue ($)">
<bx:chartseries type="bar" colorlist="36A2EB"
serieslabel="Monthly Revenue">
<bx:chartdata item="January" value="12000">
<bx:chartdata item="February" value="15000">
<bx:chartdata item="March" value="13500">
<bx:chartdata item="April" value="18000">
</bx:chartseries>
</bx:chart>💡 Use Case: Perfect for dashboards and mobile-friendly layouts where charts need to adapt to different screen sizes.
Responsive Tips:
- Charts resize automatically to fit their container width (up to
chartWidth) - Use
maintainAspectRatio="false"to fill specific container heights - Set custom aspect ratios:
2for wide (2:1),1for square (1:1),0.5for tall (1:2) - Add
resizeDelayfor performance optimization on frequently resizing containers
Control how multiple data series are displayed in bar charts:
Default (Side-by-side):
seriesplacement="default" <!-- or omit the attribute -->Clustered (Grouped bars):
seriesplacement="cluster"Stacked (Bars on top of each other):
seriesplacement="stacked"Colors can be specified in multiple formats:
<!-- Hex colors (with or without #) -->
colorlist="FF6384,36A2EB,FFCE56"
colorlist="##FF6384,##36A2EB,##FFCE56"
<!-- Named colors -->
colorlist="red,blue,green,yellow"
<!-- RGB values (use hex format) -->
colorlist="rgb(255,99,132),rgb(54,162,235)"Color Best Practices:
- Use contrasting colors for better accessibility
- Limit to 5-7 distinct colors for clarity
- Consider colorblind-friendly palettes for inclusive design
- Use ColorBrewer for scientifically-designed palettes
Control axis ranges for better data visualization:
<bx:chart scalefrom="0" scaleto="100"
yaxistitle="Percentage">
<!-- chart content -->
</bx:chart>Tips:
- Set
scaleFrom="0"for bar charts to avoid misleading visualizations - Use custom scales to zoom into specific data ranges
- Combine with
labelFormatfor custom axis labels
Format axis labels and rotate them for better readability:
<!-- Format Y-axis labels -->
<bx:chart labelFormat="{value}%" yaxistitle="Percentage">
<!-- Rotate category labels for long names -->
<bx:chart categoryLabelPositions="up_45">Label Position Options:
horizontal- Standard horizontal labels (default)up_45- 45° upward rotationup_90- 90° upward (vertical)down_45- 45° downward rotationdown_90- 90° downwardvertical- Same asdown_90
Make charts interactive with click events:
<bx:chart url="https://www.example.com/details">
<!-- Clicking any data point opens this URL -->
</bx:chart>Complete control over text appearance:
<bx:chart fontBold="true"
fontItalic="false"
fontSize="16"
foregroundColor="##2C3E50"
dataBackgroundColor="##ECF0F1">
<!-- Styled chart -->
</bx:chart>Customize data point markers for line and scatter charts:
<bx:chart showMarkers="true"
markerSize="8">
<bx:chartseries type="line">
<!-- Line chart with large markers -->
</bx:chartseries>
</bx:chart>Problem: Chart area is blank or not visible.
Solutions:
- ✅ Ensure BoxLang web support is enabled
- ✅ Check that
htmlHead()BIF is available - ✅ Make sure chart container has width/height
Problem: Custom colors not appearing correctly.
Solutions:
- ✅ Use hex format without # or with ## (BoxLang escaping):
colorlist="FF6384,36A2EB" - ✅ Check color format: hex values should be 6 characters (e.g.,
FF0000notF00) - ✅ Named colors are case-insensitive:
red,Red,REDall work
Problem: Charts don't adapt to container size changes.
Solutions:
- ✅ Set
responsive="true"(it's default, but verify) - ✅ Ensure parent container has defined width
- ✅ Use
maintainAspectRatio="false"if you need to fill specific heights - ✅ Check for CSS that might be constraining the chart
Problem: Multiple series appear side-by-side instead of stacked.
Solutions:
- ✅ Add
seriesplacement="stacked"to<bx:chart> - ✅ Ensure all series have the same chart type
- ✅ Stacking only works with
bar,line, andareachart types
Problem: Chart renders but no data appears.
Solutions:
- ✅ Verify all
<bx:chartdata>components haveitemandvalueattributes - ✅ Check that values are numeric (not strings)
- ✅ Ensure
<bx:chartdata>is nested inside<bx:chartseries> - ✅ Verify
<bx:chartseries>is nested inside<bx:chart>
Problem: X-axis labels overlap and are unreadable.
Solutions:
- ✅ Use
categoryLabelPositions="up_45"to rotate labels - ✅ Increase
chartWidthto give more space - ✅ Reduce font size with
fontSize="10" - ✅ Consider using
horizontalbartype for long labels
We ❤️ contributions! This project is open source and welcomes your help to make it even better.
If you discover a bug, please:
- Check existing issues at GitHub Issues
- Create a new issue with:
- Clear title and description
- Steps to reproduce
- Expected vs actual behavior
- BoxLang version and environment details
- Sample code that demonstrates the issue
We'd love to hear your ideas! Please:
- Open a Feature Request
- Describe the feature and its use case
- Explain how it would benefit users
Excellent! Here's how to get started:
-
Fork and Clone:
git clone https://github.com/YOUR-USERNAME/bx-charts.git cd bx-charts -
Set up Local Development Environment:
# Creates symbolic link for local module development ./setup.shThis script creates a
boxlang_modules/bx-chartssymbolic link pointing to the current directory, allowing you to test the module locally before publishing. -
Install Dependencies:
# Install BoxLang dependencies box install # Install Node.js dependencies npm install
-
Test the Module Locally:
Start a BoxLang server to test your changes:
# Start the BoxLang server (uses server.json configuration) box start # Visit test pages in your browser # http://localhost:8080/tests/ - Main test index # http://localhost:8080/tests/test-charts-enhanced.bxm - Advanced chart examples # http://localhost:8080/tests/test-responsive-charts.bxm - Responsive chart tests
The test files in
/tests/directory provide comprehensive examples of all chart types and features. -
Build the Module (Optional):
To build a distributable version of the module:
# Build with default version (1.0.0) boxlang Build.bx # Build with specific version boxlang Build.bx --version=1.2.3 # Built artifacts will be in build/artifacts/
-
Start Format Watcher:
box run-script format:watch
- ✅ Create PRs against the
developmentbranch (NOTmaster) - ✅ Follow the existing code style (auto-format with cfformat)
- ✅ Add tests for new features
- ✅ Update documentation as needed
- ✅ Keep commits focused and atomic
- ✅ Link related issues in PR description
- BoxLang/CFML: Follow cfformat settings
- Formatting: Auto-format with
box run-script format - Coding Standards: Follow Ortus Coding Standards
Documentation improvements are always welcome:
- Fix typos or unclear explanations
- Add more examples
- Improve code comments
- Create tutorials or guides
You can support BoxLang and all Ortus Solutions open source projects:
Patrons get exclusive benefits like:
- Priority support
- Early access to new features
- FORGEBOX Pro account
- CFCasts account
Need help? Don't create an issue—use our support channels:
Thank you to all our amazing contributors! ❤️
Made with contributors-img
If you discover a security vulnerability:
- DO NOT create a public issue
- Email security@ortussolutions.com
- Report in
#securitychannel on Box Team Slack
All vulnerabilities will be promptly addressed.
This project is licensed under the Apache License 2.0.
Copyright 2025 Ortus Solutions, Corp
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.
See LICENSE file for full details.
- Module Docs: You're reading them! 📚
- BoxLang Docs: https://boxlang.ortusbooks.com/
- BoxLang Website: https://boxlang.io
- Ortus Solutions: https://www.ortussolutions.com
- GitHub Repository: https://github.com/ortus-boxlang/bx-charts
- Issue Tracker: https://github.com/ortus-boxlang/bx-charts/issues
- BoxLang Training: https://www.ortussolutions.com/services/training
- CFCasts: https://www.cfcasts.com
- Blog: https://www.ortussolutions.com/blog
"I am the way, and the truth, and the life; no one comes to the Father, but by me (JESUS)" Jn 14:1-12
Copyright Since 2025 by Ortus Solutions, Corp
www.boxlang.io | www.ortussolutions.com