I am working off of the Google api example for a pie chart replacing the data.addRows/
google.visualization.arrayToDataTable with the below, however, for some reason, the last row "other" is showing up twice:
data.addRows([
['Microsoft Outlook', 2651],
['Windows Live Desktop', 657],
['iOS Devices', 1904],
['Gmail', 625],
['Yahoo! Mail: ', 629],
['Apple Mail', 1358],
['Undetectable', 842],
['Android', 515],
['Hotmail', 658],
['Lotus Notus', 620],
['AOL', 146],
['Postbox', 6],
['Windows Phone', 11],
['Thunderbird', 145],
['Other', 21]
]);
Any idea what the issue could be? Is it because there is too much data?