public ActionResult CLRChart(int id, long filterCode)
        {
            var dataProvider = new ActivityAnalysisDataProvider(this.searchService);
            var chart        = dataProvider.GetLikesRepostCommentPieChartData(id, filterCode);

            return(this.Chart(chart));
        }
        public ActionResult GetTypeOfContentChart(int id, long filterCode)
        {
            var          dataProvider = new ActivityAnalysisDataProvider(this.searchService);
            PieChartData data         = dataProvider.GetTypeOfContentPieChartData(id, filterCode);

            return(this.Chart(data));
        }