问题描述
我正在使用geoChart在国家地图中显示以下数据
我使用State cloumn和TotalSales($)作为值列绘制地图
现在,工具提示显示如下:ID TotalSales($ _ 113607.00)
我有以下摘要数据数据表
country state TotalSales($)
------- ------ ------ -------
美国ID 113607
美国CO 1003460
美国MN 7333040
美国VA 42711
这是我的实际数据
country State City BrandName总销售额($)
------- ------ ---- --------- ------------ -
美国ID Blackfoot索尼100000
美国CO桑顿索尼1003460
美国ID博伊斯三星6607
USA ID Buhl sony 7000
美国MN Burnsville iPhone 59400
美国VA FairFax索尼7768
美国VA FairFax iPhone 34943
美国MN Gn.Vallley诺基亚673940
现在我添加了更多列(City,品牌名称)从第一张表中打断摘要数据中的数据
工具提示显示如下:VA Totalsales($ _:34943(City Fairfax(BrandName sony))) - 这是错误的
但我想显示这样的工具提示:VA Totalsales($ _:7768(City Fairfax(BrandName sony))) - 这是正确的
这是我显示工具提示的数据
国家州城市名称TotalSales($)
------- ------ ---- --------- -------------
美国VA FairFax索尼7768
美国VA FairFax iPhone 34943
从这些,我得到的是,Geochart只拿最后一行显示工具提示,但我想显示特定品牌的Totalsales即sony -7768 $
我该如何做?
I am using geoChart to display following data in country Map
I have plotted the map using State cloumn and TotalSales($) as value Column
Now ,the tooltip displays like this : ID TotalSales($_113607.00)
I have following summary data in datatable
country State TotalSales($)
------- ------ -------------
USA ID 113607
USA CO 1003460
USA MN 7333040
USA VA 42711
this is my actual data
country State City BrandName TotalSales($)
------- ------ ---- --------- -------------
USA ID Blackfoot sony 100000
USA CO Thornton sony 1003460
USA ID Boise Samsung 6607
USA ID Buhl sony 7000
USA MN Burnsville iPhone 59400
USA VA FairFax sony 7768
USA VA FairFax iPhone 34943
USA MN Gn.Vallley nokia 673940
Now I have added more columns(City,Brandname) to break data from summary data from first table
The tooltip displays like this : VA Totalsales($_:34943(City Fairfax(BrandName sony)))- this is wrong
But I want to display the tooltip like this : VA Totalsales($_:7768(City Fairfax(BrandName sony))) - this is correct
this is my data to display tooltip
country State City BrandName TotalSales($)
------- ------ ---- --------- -------------
USA VA FairFax sony 7768
USA VA FairFax iPhone 34943
From these, what I got is , Geochart takes only last row for display tooltip,but I want to display particular brand's Totalsales i.e sony -7768$
How do I do this?
推荐答案
这篇关于如何使用工具提示列值在geochart中对数据进行分组?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!