Take the community feedback survey now.
                AI OnAI Off
            
        Take the community feedback survey now.
 
                I think you can do something like this:
            var result =
            ...
             .HistogramFacetFor(x => ((IChangeTrackable) x).Created, DateInterval.Year)
                .GetResult();
             var facets = result.HistogramFacetFor<IChangeTrackable>(x => x.Created);
 
    
    
    
I want to create a histogramfacet based on when the page or file was created. Making a histogram facet with the published date was easy, but the created date is not part of ISearchContent.