Blue speech bubble when plotting an entitiy

Hey Guys

I’m wondering how to remove the blue speech bubble from the image below:

The code used to plot the cone (cylinder) is below:

 var FOV = new Cesium.GeoJsonDataSource();
 FOV.load('{{=[URL](https://10.21.10.33/examples/global/vars/URL)('PATHTOJSON', 'jsonfile',args=[[request](https://10.21.10.33/examples/global/vars/request).args(0)])}}').then(function(){
 var entities = FOV.entities.values;
 for (var i = 0; i < entities.length; i++) {
 var entity = entities[i];
 entity.cylinder = new Cesium.CylinderGraphics({
 length: entity.properties.Height*1000,
 topRadius: 0,
 bottomRadius: entity.properties.FOVBottomRadius,
 outlineWidth : 2,
 outline: true,
 numberOfVerticalLines: 0,
 material : Cesium.Color.fromRandom({alpha : 0.25}),
 })
 };
 });

Thanks a lot in advance!


![blue bubble.jpg|1131x852](upload://sRg9znlugvlYBh8utEx2hnIGhX0.jpeg)

Hello,

You should be able to fix this by setting

entity.billboard = undefined;

``

Best,

Hannah

Awesome, thanks