TimeseriesChart

Attached is the TimeseriesChart . I need to change the Y axis Scale values to percentage . Please give the steps to change it .

Just convert the values in the dataset. If it comes from a query, alter the query:

SELECT
	Availability * 100 AS Availability,
	Performance * 100 AS Performance,
	Quality * 100 AS Quality,
	OEE * 100 AS OEE
FROM
	...