Question “Is it possible to display the TeeChart editor in tree mode inside the report designer?” Solution Yes, this can be done by calling the TeeChart routine TeeSaveBoolOption inside the TeeEditCha unit. Calling this routine with the TeeMsg_TreeMode key and a true value will globally set the editor to tree mode inside and out of Full Article…
Search the Wiki
Viewing 91 to 93 of 409 items
How To…Create a Master Detail Chart
Question “How do I display a different chart for each (master) record in my report?” Solution The DBTeeChart component will automatically traverse the entire dataset it is connected to. This means that if you place a chart component inside the detail band of your main report, connected to a dataset, it will display the same Full Article…
How To…Create a Chart in Code
Question “How do I create a TeeChart inside my report completely in code?” Solution Begin by creating a TppTeeChart object and adding it to the report. Then leverage the TppTeeChart.Chart property to add Series objects to the chart. The key to being successfull at creating charts in code is to include the proper TeeChart units Full Article…