void ShowTileLabels( <boolean bShow> )
boolean bShow
If bShow is true, the tile labels are displayed. If bShow is false, the tile labels are hidden. Calling this method without a parameter is equivalent to calling
it with bShow equal to true.
This method shows or hides the tile labels. A tile label indicates the count or percentage of data represented by a tile.
vehicle = { "car", "truck", "car", "car", "truck", "van", "motorcycle" }; age = { "new", "new", "old", "new", "old", "old", "new" }; declare DataObject dobj = DataObject.Create( "Vehicles" ); dobj.AddVar( "vehicle", "Vehicle", vehicle ); dobj.AddVar( "age", "Age", age ); declare MosaicPlot plot = MosaicPlot.Create( dobj, "vehicle", "age" ); plot.ShowTileLabels();