Google Charts - Customized Opacity/Width Trendlines Chart

You are Here:

How to Draw a Customized Opacity/Width Trendlines Chart?

Please wait google chart is loading...

In this example, we will draw a customized opacity/width trendlines chart. Please hover the trendlines/points in the above chart to view particular details.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://www.gstatic.com/charts/loader.js"></script> </head> <body> <div id="point"> </div> <script> google.charts.load('current', {packages: ['corechart']}); google.charts.setOnLoadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable([ ['Diameter', 'Age'], [8, 37], [4, 19.5], [11, 52], [4, 22], [3, 16.5], [6.5, 32.8], [14, 72] ]); var options = { title: 'Age of sugar maples vs. trunk diameter, in inches', height: 400, pointShape: 'diamond', hAxis: { title: 'Diameter' }, vAxis: { title: 'Age' }, legend: 'none', trendlines: { 0: { color: 'green', lineWidth: 10, opacity: 0.2, type: 'exponential' } } }; var chart = new google.visualization.ScatterChart(document.getElementById('point')); chart.draw(data, options); } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98% of Google Charts Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in Google Charts.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author