Nico-du / birdeye

Automatically exported from code.google.com/p/birdeye
0 stars 0 forks source link

MicroColumnChart - colors.lenght should be colors.length in createColumns. #4

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Use a non-0 colors array with a MicroColumnChart

In the createColumns() method, this line will have a problem:
  if (colors == null || colors.lenght == 0)

Fix:
  if (colors == null || colors.length == 0)

What version of the product are you using? On what operating system?
  trunk (March 28, 2009), Windows

Original issue reported on code.google.com by boni...@frii.com on 28 Mar 2009 at 10:39

GoogleCodeExporter commented 8 years ago
Thanks.

Original comment by f4us...@gmail.com on 30 Mar 2009 at 9:45