Attributes |
Name | Required | Request-time | Type | Description |
id | true | true | java.lang.String | ID under which the chart description bean will be stored in the page to be found by the img tag. Beware of using an ID which is not yet used for other beans in the page to avoid compile errors. |
type | true | true | java.lang.String | Type of the chart. One of combinedxy |
layout | true | true | java.lang.String | Layout of the chart. Either vertical or horizontal |
title | false | true | java.lang.String | Title of the chart which is displayed on the chart panel above the plot pane. |
fontname | false | true | java.lang.String | The font to be used for the chart title. This attribute is new in cewolf version 1.1. |
fontsize | false | true | java.lang.String | The font size to be used for the chart title. This attribute is new in cewolf version 1.1. |
xaxislabel | false | true | java.lang.String | Title of the chart's x-axis. This attributes is ignored if the type attribute of the parent chart tag is one of pie3d or pie. |
yaxislabel | false | true | java.lang.String | Title of the chart's y-axis. This attributes is ignored if the type attribute of the parent chart tag is one of pie3d or pie. |
xaxisinteger | false | true | java.lang.String | Boolean value to indicate whether the label values of a numeric domain (X) axis should have integer values only, or if decimal values are OK. Default: false. This attribute is new in cewolf version 1.1. |
yaxisinteger | false | true | java.lang.String | Boolean value to indicate whether the label values of a numeric range (Y) axis should have integer values only, or if decimal values are OK. Default: false. This attribute is new in cewolf version 1.1. |
background | false | true | java.lang.String | Background image of the chart panel. The value of this attribute is the filename of a graphics file relative to the web application's root directory (e.g. /WEB-INF/img/bg.jpg). The image must be loadable by the default java.awt.Toolkit of the servlet container's JVM. |
backgroundimagealpha | false | true | java.lang.String | Chart's backgound alpha blending value as a float. Value ranges from 0.0 to 1.0. |
antialias | false | true | java.lang.String | Antialiased rendering of the chart. |
showlegend | false | true | java.lang.String | Boolean value to switch on or off the legend display inside of this panel. |
legendanchor | false | true | java.lang.String | Sets the anchor of the legend inside of the panel. Possible values are 'north', 'south', 'west', 'east'. Ignored if showlegend is 'false'. |