{{widget_name.isVisible}}
Chart Series
property head to supply the data and details related to identifying the data points.Series Title
- the name of the series. In the example above, it is Total Bugs.Series Data
- stores the data points for the total bugs.X-axis Label
- to define a title for the x-axis.Y-axis Label
- to define a title for the y-axis.+Add Series
and embed the data into Series Data
, as shown in the video below.GetClosedDefectCountFromAPI
and you can use as below:x
and y
axes and add them to series data.+Add Series
button and plot data points for a comparative study.+Add Series
button.+Add Series
button.[{“label”: “string value”, “value”: “string value”}]
Custom Chart
option from the Chart Type
property. Once you select the custom chart type, you can see a new property Custom Fusion Chart
.subCaption
to define the company name.y-axis
) to show $
as a prefix. You can use numberPrefix
and add the dollar($) sign.trendlines
to add this detail to your chart.trendlines
are vertical or horizontal lines that help users quickly understand the emphasized data point. For example, a monthly target.enablemultislicing
. Below is a code snippet that you can add to the chart property to have this effect.JS
label next to Visible and write the javascript code that can handle the show and hide of the widget by manipulating visible property.{{widget_name.isVisible}}
in your code.Checkbox1
onto the canvas and bind it to the Visible property of the chart widget by enabling the JS
label next to it. Add the following JavaScript code in the Visible property.{{widget_name.selectedDataPoint.x}}
for x-axis, and {{widget_name.selectedDataPoint.y}}
for y-axis.