Hi All,
i would like to ask you if is possible to pass data to chrat from behind code. I tried change on of your example (hart-with-axis-scale-breaks.html). For example part with filling dollars
data: [{
type: "column",
yValueFormatString: "$#,##0.00",
dataPoints: [
{ label: "USA", y: 42494 },
]
}]
i change it to this
data: [{
type: "column",
yValueFormatString: "$#,##0.00",
dataPoints: [
{ label: "USA", y: '<%=dataUSA%>' },
]
}]
and in behind code is
Public Class yearlytemperature
Inherits System.Web.UI.Page
Public dataUSA As Integer
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
dataUSA = "42494"
End If
dataUSA = "42494"
End Sub
End Class
but nothing happens, when i will run code in debug mode i can see that variable passed into code but its not rendered :/
thank you for your help
BR
Antra