Anti-Aliasing and Charts

Anti-aliasing improves chart images by displaying jagged lines as smooth, and affects performance. In applications where performance is critical, use the server.xml setting to prevent charts from being anti-aliased.

  To disable anti-aliasing:

  1. In a text editor, open server.xml.

  2. Search and locate the section <SERVICES app="bq">.

  3. Search and locate the section <service type="BrioQuery">.

  4. In the section <properties>, copy and paste the string:

    <property defid="0ad70321-0001-08aa-000000e738090110" name="DISABLE_ANTIALIASING">true</property>
    
     <SERVICES app="bq">
    ...
        <service type="BrioQuery">
    ...
          <properties>
    ...
            <property defid="0ad70321-0001-08aa-000000e738090110" name="DISABLE_ANTIALIASING">true</property>
    ...
          </properties>
        </service>
      </SERVICES>