Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The first thing we need to look at the the label for the report in the report view.

Report Label

When displaying the report to the user Weave will use the Display Name property set in the report design to obtain the text, for the Blank Report template the text for this property is "Blank Report", so that was the text that was displayed in the report panel in the client.

...

Code Block
<?xml version="1.0" encoding="UTF-8"?>

<config xmlns="urn:com.cohga.server.config#1.0" xmlns:birt="urn:com.cohga.server.report.birt#1.0">

    <birt:report id="sample" report="reports\sample_report" label="Sample Report"/>

</config>

Report Description

If you hold the mouse cursor over the report label in the report view you'll notice a description of the report popup Image Added
Again, this can be changed by editing the report design and changing the Description in the report properties Image Added
Or alternatively you can set a 'description' property in the report registration.

Code Block

<?xml version="1.0" encoding="UTF-8"?>

<config xmlns="urn:com.cohga.server.config#1.0" xmlns:birt="urn:com.cohga.server.report.birt#1.0">

    <birt:report id="sample" report="reports\sample_report" label="Sample Report" description="Sample for demonstrating BIRT"/>

</config>