Angular-cesium using geoJSON as datasource

Hi All,
I was wondering if there is any documentation or tutorial that can help me with angular JSON with geoJson as datasource.
I don’t find any reference to use GeoJson as datasource.

I’m using version as specified below.
Angular CLI version: 8
Angular-Cesium version: 0.0.73

@Ankita_Gupta
Do u have Geojson data?

If u have u can use given code.

 Cesium.GeoJsonDataSource.load(geojson,{clampToGround:true})
.then(data => {
  try{    
      that.viewer.dataSources.add(data);       
  }catch(e){       
  }
})

Hi! @Shashi
I’m using angular-cesium library, not cesiumjs. Since angular-cesium library is very component driven, I wanted to know if there is way to bind geoJson datasource to angular-cesium component.