Package quadbase.util

Interface ICustomizeImageMapDataHintBox


public interface ICustomizeImageMapDataHintBox
This interface is used to customize the data hint box value for image map. The customized hint box is then embedded in the map file of the chart export (if map file export is specified).

A typical use of the interface is as follows :

    QbChart chart = ....; chart.setImageMapDataHintBoxHandle(new CustomizeImageMap()); ...

    public CustomizeImageMap implements ICustomizeImageMapDataHintBox {

      public String customizeHintBox(String str) {
        ...
      }
  • Method Summary

    Modifier and Type
    Method
    Description
    return modified data hint box value
  • Method Details

    • customizeHintBox

      String customizeHintBox(String str)
      return modified data hint box value
      Parameters:
      str - original hint box value
      Returns:
      modified hint box value