Logo

dev-resources.site

for different kinds of informations.

billboard.js 3.14 release: viewBox resizing!

Published at
10/25/2024
Categories
javascript
datavisualization
chart
d3js
Author
netil
Author
5 person written this
netil
open
billboard.js 3.14 release: viewBox resizing!

New v3.14 release came out today! This release comes with 5 new features, 8 bug fixes and bunch of improvements.

For the detailed release info, please checkout the release note:

What’s New?

viewBox resizing

New resizing option is added. The default resizing will resize based on the its container dimension changes.

The new resize.auto='viewBox' option will make the chart to resize maintaining the aspect ratio, and without any computation costs.

Image description

Basically, it utilizes the “viewBox” attribute behaviour, and what it actually does is stretches the SVG viewport.

Demo: https://naver.github.io/billboard.js/demo/#ChartOptions.resizeViewBox

If the usage requirement matches, is definetelly recommended.

axis.evalTextSize

When chart is initialized to render, internally will compute axis tick text size to calculated the space needed for axis area.

Generally, this process isn’t needed to be considered at all, but in a case when axis tick text sizes changes after this initialization, the calculation will make to render incorrectly, because the tick text size used internally isn’t valid after the changes.

To improve in this use case, will provide new axis.evalTextSize option, where can opt the way to getting axis tick size computation.

axis: {
    // 1: default, which will memoize evaluated axis text size
    evalTextSize: true,

    // 2: will evaluate the dimension of axis text size every time.
    evalTextSize: false,

    // 3: customize dimension evaluator
    evalTextSize: function(text) {
        ...
        return {width, height):
   }
}
Enter fullscreen mode Exit fullscreen mode

interaction.onout

The “default” behavior of being away from chart area is defocusing currently selected state. That means, the showing state of tooltip, focused grid line etc.

The new option will make to maintain last selection state, even being away from the chart area, to keep last selection state.

Image description

Technically, the option will turn-on or off the default interaction for “onout” event.

interaction: {
    onout: false
}
Enter fullscreen mode Exit fullscreen mode

forced lazy rendering

The render.lazy option will make to render when container element becoming visible. Useful for circumstances where the chart element needed to be initialized later.

The determination will automatically set when the container element isn’t visible. And there’s no way to force to render in that condition, because initializing on hidden state can possible make to render wrongly and has no meaning in general.

But, also there’re special cases to do that. To fulfill these necessity, when explicit render.lazy=false is set, will initialize regardless the container element visibility state.

render: {
    // when explicit 'false' set, will force render even container is hidden
    lazy: false
}
Enter fullscreen mode Exit fullscreen mode

Visibility state to legend item’s event callback

Small informative enhancement is added for legend item’s event callback functions.

Event callbacks only provided current legend id value only. If needed do some task based on the legend visibility, it needed to implement on your own.

It wasn’t hard, but is definitely cumbersome taks. To get rid this, now will pass “visible” state of the legend item.

Based on this argument, can execute task based on the visibility state.

legend
     item: {
         // new 'visible' param is given to be used within callback
         onclick: function(id, visible) {
             // toggle based on the data visibility
             this[visible ? "hide" : "show"](id);
         },
         onover: function(id, visible) { ... },
         onout: function(id, visible) { ... },
    }
}
Enter fullscreen mode Exit fullscreen mode

Closing

That’s all we have for this release and probably last feature implementations for this year.

Thanks always, and stay tune for upcoming updates!

chart Article's
30 articles in total
Favicon
Top 5 React Chart Libraries for 2025
Favicon
Create Stunning AI-Powered .NET MAUI Charts Using Natural Language
Favicon
Transform JSON into Stunning Charts: Auto-Generate Visuals with Syncfusion® .NET MAUI Toolkit 
Favicon
Create a Flutter 3D Column Chart to Showcase the Top 6 Renewable Energy-Consuming Countries
Favicon
Visualizing Skyscraper Data with .NET MAUI Doughnut Chart and Maps
Favicon
How to Animate SVG Path in Angular Charts?
Favicon
Building a Neumorphic UI with .NET MAUI Column Chart to Showcase Gen Z’s Favourite Social Media Platforms
Favicon
Create a .NET MAUI Spline Area Chart to Track Annual Gold Price Fluctuations Across Major Global Currencies
Favicon
Display Chart in Express.js App using CanvasJS
Favicon
Create a Flutter Column Chart to Visualize the World’s Largest Wind Power Producers
Favicon
Creating a Dynamic WPF Chart Dashboard to Showcase 2024 Women’s T20 World Cup Statistics
Favicon
Enhance Data Visualization with Markers in Angular Charts
Favicon
Implement Chart Export in Different Formats in Flutter
Favicon
Easily Create Dynamic Charts in Excel Using C#
Favicon
Visualize U.S. Gulf Coast Kerosene-Type Jet Fuel Prices with .NET MAUI Fast Line Chart
Favicon
billboard.js 3.14 release: viewBox resizing!
Favicon
Create a WPF Multi-Bar Chart to Visualize U.S. vs. China Superpower Status
Favicon
Easily Draw Custom Shapes in Flutter Cartesian Charts
Favicon
Create a WPF FastLine Chart to Analyze Global Population Trends by Age Group
Favicon
View 100+ Years of Economic Superpowers’ Exports with .NET MAUI Stacked Area Chart
Favicon
Create a .NET MAUI Bubble Chart to Visualize Market Cap Distribution by Country – GDP and Company Analysis
Favicon
Chart of the Week: Create a .NET MAUI Drill-Down Chart to View U.S. Workforce Distribution by Industry
Favicon
Effectively Visualize Data: Add Grids and Charts in JavaScript Pivot Field List
Favicon
Get 3 Proven Trading Signals in Real-Time: Automate Your Profits
Favicon
Create a Flutter Column Chart to View the Top 15 Water-Consuming Countries in the World
Favicon
Enhancing Angular Charts: Boosting Readability with Dynamic Colors
Favicon
React Synchronized Charts: The Perfect Tool to Compare Multiple Datasets
Favicon
Chart of the Week: Clean and Preprocess E-Commerce Website Traffic Data Using an AI-Powered Smart WPF Chart
Favicon
Chart of the Week: Creating a .NET MAUI Radar Chart to Visualize Wind Directions
Favicon
Chart of the Week: Visualizing Top 25 Largest Countries Using .NET MAUI Column Chart

Featured ones: