Column Chart
I am working through the drill down chart example and all is great, but I want is to show the title of the product in the 'DataLabelsField' but pass the productID value when I click the column.
I'm passing the value client side
function OnClientSeriesClicked(sender, args) {
if (args.get_seriesName() != "Orders") $find("<%= rapD.ClientID %>").ajaxRequest(args.get_category());
}
My SQLDataSource has productID, ProductName and a count field.
I've been searching for ages now but can't find a solution to what must be simple.
Cheers,
Jon
I am working through the drill down chart example and all is great, but I want is to show the title of the product in the 'DataLabelsField' but pass the productID value when I click the column.
I'm passing the value client side
function OnClientSeriesClicked(sender, args) {
if (args.get_seriesName() != "Orders") $find("<%= rapD.ClientID %>").ajaxRequest(args.get_category());
}
My SQLDataSource has productID, ProductName and a count field.
I've been searching for ages now but can't find a solution to what must be simple.
Cheers,
Jon