//创建Ring图表
function createRingThemeLayer() {
chartsSettingForPieOrRing.innerRingRadius = 20;
themeLayerOptions.chartsSetting = chartsSettingForPieOrRing;
themeSource = new ol.source.Graph("RingLayer", "Ring", themeLayerOptions);
themeSource.onclick=showInfoWin;
//themeSource.on("click", showInfoWin);
themeSource.addFeatures(features);
addPointerInteraction(themeSource);
themeLayer = new ol.layer.Image({
source: themeSource
});
map.addLayer(themeLayer);
}