Google chart rendering issue

Sorry, sort of OT, some folks may have some idea.

code below.

<html>
  <head>
    <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
    <script type="text/javascript">
      google.charts.load('current', {packages:['wordtree']});
      google.charts.setOnLoadCallback(drawChart);

      function drawChart() {
        var data = google.visualization.arrayToDataTable(
          [ ['Phrases'],
            ['information technology'],
            ['web'],
            ['development']
          ]
        );

        var options = {
          wordtree: {
            format: 'implicit',
           // word: ''
          }
        };

        var chart = new google.visualization.WordTree(document.getElementById('wordtree_basic'));
        chart.draw(data, options);
      }
    </script>
  </head>
  <body>
    <div id="wordtree_basic" style="width: 900px; height: 500px;"></div>
  </body>
</html>

issue: expected three items to be rendered, however, we now have four including an erroneous “technology” while view source indicates correct rendering.

tested browser; firefox and chrome.

OT is OT

Feel free to remove it since I don’t have the permission to do so.

How many times do you need to be asked not to post OT questions?

hint: add an “ot” category to forum :slight_smile:

1 Like

something like cat @justaguy > /dev/null ?

I’ve really had enough, next time @justaguy posts another clearly OT post, starting with things like

"I know this is OT… or whatever

thus clearly admitting he already knows he’s abusing and the time of Lucee community with OT spam, as such, asking over and over again hasn’t worked, so I’m going propose he gets banned from this forum

@justaguy - Please keep posts specifically to questions about Lucee.

1 Like