Package quadbase.util
Interface INoDataToPlotMessage
This interface is used to set/get different properties associated with the no data to plot
message drawn in a chart.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns the text string.booleanThis function checks if the no data to plot message is visible or not.voidsetMessage(String msg) Sets the value for the text string.voidsetVisible(boolean b) This function enables/disables the drawing no data to plot message.
-
Method Details
-
isVisible
boolean isVisible()This function checks if the no data to plot message is visible or not.- Returns:
- true if the message is visible, false otherwise
-
setVisible
void setVisible(boolean b) This function enables/disables the drawing no data to plot message.- Parameters:
b- true if message is to be displayed, false otherwise.
-
getMessage
String getMessage()Returns the text string. Default value is "EspressChart"- Returns:
- No data to Plot Message
-
setMessage
Sets the value for the text string. param msg New Message.
-