SmartClient Version: v8.3p_2013-02-18/PowerEdition Development Only (built 2013-02-18)
in the #simpleChart sample if you reduce the dataset like this:
and then switch to chartType 'column' and 'unstacked', you'll see that the central columns overlaps.
Than if you switch to 'pie' you'll see that the legend reports the wrong facet.
in the #simpleChart sample if you reduce the dataset like this:
Code:
var chartData = [ {region: "West", product: "Cars", sales: 37}, {region: "North", product: "Cars", sales: 29}, // {region: "East", product: "Cars", sales: 80}, // {region: "South", product: "Cars", sales: 87}, {region: "West", product: "Trucks", sales: 23}, {region: "North", product: "Trucks", sales: 45}, // {region: "East", product: "Trucks", sales: 32}, // {region: "South", product: "Trucks", sales: 67}, {region: "West", product: "Motorcycles", sales: 12}, {region: "North", product: "Motorcycles", sales: 4} // {region: "East", product: "Motorcycles", sales: 23}, // {region: "South", product: "Motorcycles", sales: 45} ]
Than if you switch to 'pie' you'll see that the legend reports the wrong facet.
Comment