ActiveReports 18 .NET Edition
In This Topic
    Custom Report Item
    In This Topic

    The Page and RDLX reports allow creating a very powerful custom report with a custom designer. See the example below to have the idea of what the configuration file should be look like:

    XML code. Add to the configuration file
    Copy Code
    <?xml version="1.0" encoding="utf-8" ?>
    <Configuration>
    <Extensions>
    <ReportItems>
    <ReportItem Name="RadarChart" Type="GrapeCity.ActiveReports.Samples.Radar.RadarChart, RadarChart" />
    </ReportItems>
    <ReportItemDesigner>
    <ReportItem Name="RadarChart" Type="GrapeCity.ActiveReports.Samples.Radar.RadarDesigner, RadarDesigner" BitmapResource="GrapeCity.ActiveReports.Samples.Radar.RadarIcon.png" />
    </ReportItemDesigner>
    </Extensions>
    </Configuration>

    See the Custom Chart sample on implementation.