hjohan

Members
  • Content count

    5
  • Joined

  • Last visited

Everything posted by hjohan

  1. Hi I am a complete novis to your exellent library. I want to feed a realtime widget with time and speedvalue from a SQL database.. Can you help me to spot What I am doing wrong.. How to activate a timerlike function so that we ask for latest record(speed/time) Best regards Johan ASPX ###################### <%@ Page Language="VB" AutoEventWireup="false" CodeFile="realtime.aspx.vb" Inherits="realtime" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <title>Xtrakk zoomline</title> <script type="text/javascript" src="FusionCharts/FusionCharts.js"></script> </head> <body> <form id="form1" runat="server"> <div> <div class="gen-chart-render"> <asp:DropDownList ID="DropDownList1" runat="server"> </asp:DropDownList> <asp:Calendar ID="Calendar1" runat="server" BackColor="White" BorderColor="#999999" CellPadding="4" DayNameFormat="Shortest" Font-Names="Verdana" Font-Size="8pt" ForeColor="Black" Height="180px" Width="200px"> <DayHeaderStyle BackColor="#CCCCCC" Font-Bold="True" Font-Size="7pt" /> <NextPrevStyle VerticalAlign="Bottom" /> <OtherMonthDayStyle ForeColor="#808080" /> <SelectedDayStyle BackColor="#666666" Font-Bold="True" ForeColor="White" /> <SelectorStyle BackColor="#CCCCCC" /> <TitleStyle BackColor="#999999" BorderColor="Black" Font-Bold="True" /> <TodayDayStyle BackColor="#CCCCCC" ForeColor="Black" /> <WeekendDayStyle BackColor="#FFFFCC" /> </asp:Calendar> <asp:Button ID="Button1" runat="server" Text="Button" /> <br /> <br /> <asp:Literal ID="Literal1" runat="server"></asp:Literal> </div> </div> </form> </body> </html> ###################### Code behind VB Dim dataURL As String 'Create dataURL dataURL = Server.UrlEncode("ChartDataURL.aspx?modem_id=" & DropDownList1.SelectedItem.Value & "&calday=" & Calendar1.SelectedDate.ToString("yyyy/MM/dd") & "&graphXML=" & "realtime" & "") 'Render Chart Literal1.Text = FusionCharts.RenderChart("xcharts/realtimeline.swf", dataURL, "", "actuall speed", "600", "350", False, True) ################################# Code behind ChartDataURL.aspx Public Sub realtime_singleline(ByVal modemId As String, ByVal calday As String) 'create recordset to get details for the factory id Dim X As New SqlConnection(Z) : X.Open() Dim Q As New SqlCommand("SELECT top(1) * FROM A1 WHERE MODEM_ID='" & modemId & "' ORDER BY RTC_TIME desc", X) Dim R As SqlDataReader = Q.ExecuteReader Dim speedvalue As String = Nothing While R.Read speedvalue = R("speed") End While 'Define variables Dim dateTimeLabel As String 'Generate the x-axis label (time in hh:mm:ss format) Dim objToday As Date = Now dateTimeLabel = objToday.Hour.ToString + ":" + objToday.Minute.ToString + ":" + objToday.Second.ToString 'Now write it to output stream Response.Write("&label=" + dateTimeLabel + "&value=120") End Sub
  2. I downloaded your example project FusionGadgets_VBNet, i think it was made a long time ago.. Tried to open the project in VS2010 and it gave me like 84 errors. I want an example that works 'out of the box' Can you try your quick start project and verify it is working or not ! I just unzipped the project and did not touch a single line of CODE ! Best regards Hjohan
  3. This is my code, can you spot somethin gwrong, the aspx page only says CHART in upper left corner. ###################################### <%@ Page Language="VB" AutoEventWireup="false" CodeFile="MSCharts.aspx.vb" Inherits="DBExample_MSCharts" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>test</title> <script type="text/javascript" src="js/FusionCharts.js"></script> </head> <body> <form id="form1" runat="server"> <div id="wrapper"> <div class="content-area"> <div id="content-area-inner-main"> <div class="gen-chart-render"> <asp:Literal ID="Literal1" runat="server"></asp:Literal> </div> </div> </div> </div> </form> </body> </html> ##################################################################### Imports InfoSoftGlobal Imports System.Data.SqlClient Imports System.Text Partial Class DBExample_MSCharts Inherits System.Web.UI.Page Shared Z As String = "USER ID=sa;PASSWORD=Ramses12;INITIAL CATALOG=GPSGATE" '//SQL CONNECTION STRING Public Function mschartsconnection() As String 'In this example, we show how to connect multi-series FusionCharts to a database. 'For the sake of ease, we've used an Access database which is present in '../App_Data/FactoryDB.mdb. It just contains two tables, which are linked to each 'other. 'xmlData will be used to store the entire XML document generated Dim xmlData As New StringBuilder() 'Generate the chart element xmlData.Append("<?xml version=""" & "1.0" & """?>") xmlData.Append("<chart compactDataMode=""1"" dataSeparator=""|"" paletteThemeColor=""5D57A5"" divLineColor=""5D57A5"" divLineAlpha=""40"" vDivLineAlpha=""40""dynamicAxis = ""1"">") xmlData.Append("<categories>") 'create recordset to get details for the factory id Dim X As New SqlConnection(Z) : X.Open() Dim Q As New SqlCommand("SELECT * FROM A1 WHERE MODEM_ID='11691000810062' AND RTC_TIME LIKE '" & Left(Replace(Now.Date, "-", ""), 8) & "%' ORDER BY RTC_TIME", X) Dim R As SqlDataReader = Q.ExecuteReader 'Iterate through each record While R.Read 'Generate <time on x axel xmlData.Append(R("rtc_time").ToString() & "|") End While R.Close() 'Close categories element xmlData.Append("</categories>") xmlData.Append("<dataset seriesName=""" & "Series1" & """>") Dim X2 As New SqlConnection(Z) : X2.Open() Dim Q2 As New SqlCommand("SELECT * FROM A1 WHERE MODEM_ID='11691000810062' AND RTC_TIME LIKE '" & Left(Replace(Now.Date, "-", ""), 8) & "%' ORDER BY RTC_TIME", X2) Dim R2 As SqlDataReader = Q2.ExecuteReader 'Iterate through each record While R2.Read 'Set speed xmlData.Append(R2("speed").ToString() & "|") End While R2.Close() xmlData.Append("</dataset>") 'Close chart element xmlData.Append("</chart>") 'Create the chart - Multi-Series Line Chart with data from xmlData Return FusionCharts.RenderChart("Charts/ZoomLine.swf", "", xmlData.ToString(), "chartid", "1000", "400", False, True) End Function Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Literal1.Text = mschartsconnection() End Sub End Class ###################### Produces this XML.. is it wrong formatet or what ? {<?xml version="1.0"?><chart compactDataMode="1" dataSeparator="|" paletteThemeColor="5D57A5" divLineColor="5D57A5" divLineAlpha="40" vDivLineAlpha="40"dynamicAxis = "1"><categories>20110621000009|20110621000039|20110621000109|20110621000109|20110621000139|20110621000209|20110621000239|20110621000309|20110621000339|20110621000409|20110621000439|20110621000509|20110621000539|20110621000609|20110621000639|20110621000709|20110621000739|20110621000809|20110621000839|20110621000909|20110621000939|20110621001009|20110621001039|20110621001109|20110621001139|20110621001209|20110621001239|20110621001309|20110621001339|20110621001409|20110621001439|20110621001509|20110621001539|20110621001609|20110621001639|20110621001709|20110621001739|20110621001809|20110621001839|20110621001909|20110621001939|20110621002009|20110621002039|20110621002109|20110621002139|20110621002209|20110621002239|20110621002309|20110621002339|20110621002409|20110621002439|20110621002509|20110621002539|20110621002609|20110621002639|20110621002709|20110621002739|20110621002809|20110621002839|20110621002909|20110621002939|20110621003009|20110621003039|20110621003109|20110621003139|20110621003209|20110621003239|20110621003309|20110621003339|20110621003409|20110621003439|20110621003509|20110621003539|20110621003609|20110621003639|20110621003709|20110621003739|20110621003809|20110621003839|20110621003909|20110621003939|20110621004009|20110621004039|20110621004109|20110621004139|20110621004209|20110621004239|20110621004309|20110621004339|20110621004409|20110621004439|20110621004509|20110621004539|20110621004609|20110621004639|20110621004709|20110621004739|20110621004809|20110621004839|20110621004909|20110621004939|20110621005009|20110621005039|20110621005109|20110621005139|20110621005209|20110621005239|20110621005309|20110621005339|20110621005409|20110621005439|20110621005509|20110621005539|20110621005609|20110621005639|20110621005709|20110621005739|20110621005809|20110621005839|20110621005909|20110621005939|20110621010009|20110621010039|20110621010109|20110621010139|20110621010209|20110621010239|20110621010309|20110621010339|20110621010409|20110621010439|20110621010509|20110621010539|20110621010609|20110621010639|20110621010709|20110621010739|20110621010809|20110621010839|20110621010909|20110621010939|20110621011009|20110621011039|20110621011109|20110621011139|20110621011209|20110621011239|20110621011309|20110621011339|20110621011409|20110621011439|20110621011509|20110621011539|20110621011609|20110621011639|20110621011709|20110621011739|20110621011809|20110621011839|20110621011909|20110621011939|20110621012009|20110621012039|20110621012109|20110621012139|20110621012209|20110621012239|20110621012309|20110621012339|20110621012409|20110621012439|20110621012509|20110621012539|20110621012609|20110621012639|20110621012709|20110621012739|20110621012809|20110621012839|20110621012909|20110621012939|20110621013009|20110621013039|20110621013109|20110621013139|20110621013209|20110621013239|20110621013309|20110621013339|20110621013409|20110621013439|20110621013509|20110621013539|20110621013609|20110621013639|20110621013709|20110621013739|20110621013809|20110621013839|20110621013909|20110621013939|20110621014009|20110621014039|20110621014109|20110621014139|20110621014209|20110621014239|20110621014309|20110621014339|20110621014409|20110621014439|20110621014509|20110621014539|20110621014609|20110621014639|20110621014709|20110621014739|20110621014809|20110621014839|20110621014909|20110621014939|20110621015009|20110621015039|20110621015109|20110621015139|20110621015209|20110621015239|20110621015309|20110621015339|20110621015409|20110621015439|20110621015509|20110621015539|20110621015609|20110621015639|20110621015709|20110621015739|20110621015809|20110621015839|20110621015909|20110621015939|20110621020001|20110621020031|20110621020101|20110621020131|20110621020201|20110621020231|20110621020301|20110621020331|20110621020401|20110621020431|20110621020501|20110621020531|20110621020601|20110621020631|20110621020701|20110621020731|20110621020801|20110621020831|20110621020901|20110621020931|20110621021001|20110621021031|20110621021101|20110621021131|20110621021201|20110621021231|20110621021301|20110621021331|20110621021401|20110621021431|20110621021501|20110621021531|20110621021601|20110621021631|20110621021701|20110621021731|20110621021801|20110621021831|20110621021901|20110621021931|20110621022001|20110621022031|20110621022101|20110621022131|20110621022201|20110621022231|20110621022301|20110621022331|20110621022401|20110621022431|20110621022501|20110621022531|20110621022601|20110621022631|20110621022701|20110621022731|20110621022801|20110621022831|20110621022901|20110621022931|20110621023001|20110621023031|20110621023101|20110621023131|20110621023201|20110621023231|20110621023301|20110621023331|20110621023401|20110621023431|20110621023501|20110621023531|20110621023601|20110621023631|20110621023701|20110621023731|20110621023801|20110621023831|20110621023901|20110621023931|20110621024001|20110621024031|20110621024101|20110621024131|20110621024201|20110621024231|20110621024301|20110621024331|20110621024401|20110621024431|20110621024501|20110621024531|20110621024601|20110621024631|20110621024701|20110621024731|20110621024801|20110621024831|20110621024901|20110621024931|20110621025001|20110621025031|20110621025101|20110621025131|20110621025201|20110621025231|20110621025301|20110621025331|20110621025401|20110621025431|20110621025501|20110621025531|20110621025601|20110621025631|20110621025701|20110621025731|20110621025801|20110621025831|20110621025901|20110621025931|20110621030001|20110621030031|20110621030101|20110621030101|20110621030131|20110621030201|20110621030231|20110621030301|20110621030331|20110621030401|20110621030431|20110621030501|20110621030531|20110621030601|20110621030631|20110621030701|20110621030731|20110621030801|20110621030831|20110621030901|20110621030931|20110621031001|20110621031031|20110621031101|20110621031131|20110621031201|20110621031231|20110621031301|20110621031331|20110621031401|20110621031431|20110621031501|20110621031531|20110621031601|20110621031631|20110621031701|20110621031731|20110621031801|20110621031831|20110621031901|20110621031931|20110621032001|20110621032031|20110621032101|20110621032131|20110621032201|20110621032231|20110621032301|20110621032331|20110621032401|20110621032431|20110621032501|20110621032531|20110621032601|20110621032631|20110621032701|20110621032731|20110621032801|20110621032831|20110621032901|20110621032931|20110621033001|20110621033031|20110621033101|20110621033101|20110621033131|20110621033201|20110621033231|20110621033301|20110621033331|20110621033401|20110621033431|20110621033501|20110621033531|20110621033601|20110621033631|20110621033701|20110621033731|20110621033801|20110621033831|20110621033901|20110621033931|20110621034001|20110621034031|20110621034101|20110621034131|20110621034201|20110621034231|20110621034301|20110621034331|20110621034401|20110621034431|20110621034501|20110621034531|20110621034601|20110621034631|20110621034701|20110621034731|20110621034801|20110621034831|20110621034901|20110621034931|20110621035001|20110621035031|20110621035101|20110621035131|20110621035201|20110621035231|20110621035301|20110621035331|20110621035401|20110621035431|20110621035501|20110621035531|20110621035601|20110621035631|20110621035701|20110621035731|20110621035801|20110621035831|20110621035901|20110621035931|20110621040001|20110621040031|20110621040101|20110621040101|20110621040131|20110621040201|20110621040231|20110621040301|20110621040331|20110621040401|20110621040431|20110621040501|20110621040531|20110621040601|20110621040631|20110621040701|20110621040731|20110621040801|20110621040831|20110621040901|20110621040931|20110621041001|20110621041031|20110621041101|20110621041131|20110621041201|20110621041231|20110621041301|20110621041331|20110621041401|20110621041431|20110621041501|20110621041531|20110621041601|20110621041631|20110621041701|20110621041731|20110621041801|20110621041831|20110621041901|20110621041931|20110621042001|20110621042031|20110621042101|20110621042131|20110621042201|20110621042231|20110621042301|20110621042331|20110621042401|20110621042431|20110621042501|20110621042531|20110621042601|20110621042631|20110621042701|20110621042731|20110621042801|20110621042831|20110621042901|20110621042931|20110621043001|20110621043031|20110621043101|20110621043131|20110621043201|20110621043231|20110621043301|20110621043331|20110621043401|20110621043431|20110621043501|20110621043531|20110621043601|20110621043631|20110621043701|20110621043731|20110621043801|20110621043831|20110621043901|20110621043931|20110621044001|20110621044031|20110621044101|20110621044131|20110621044201|20110621044231|20110621044301|20110621044331|20110621044401|20110621044431|20110621044501|20110621044531|20110621044601|20110621044631|20110621044701|20110621044731|20110621044801|20110621044831|20110621044901|20110621044931|20110621045001|20110621045031|20110621045101|20110621045131|20110621045201|20110621045231|20110621045301|20110621045331|20110621045401|20110621045431|20110621045501|20110621045531|20110621045601|20110621045631|20110621045701|20110621045731|20110621045801|20110621045831|20110621045901|20110621045931|20110621050001|20110621050031|20110621050101|20110621050131|20110621050201|20110621050231|20110621050301|20110621050331|20110621050401|20110621050431|20110621050501|20110621050531|20110621050531|20110621050601|20110621050631|20110621050701|20110621050731|20110621050801|20110621050831|20110621050901|20110621050931|20110621051001|20110621051031|20110621051101|20110621051101|20110621051131|20110621051201|20110621051231|20110621051231|20110621051301|20110621051331|20110621051401|20110621051431|20110621051501|20110621051531|20110621051601|20110621051631|20110621051701|20110621051731|20110621051801|20110621051831|20110621051901|20110621051931|20110621052001|20110621052031|20110621052101|20110621052131|20110621052201|20110621052231|20110621052301|20110621052331|20110621052401|20110621052431|20110621052501|20110621052531|20110621052601|20110621052631|20110621052701|20110621052731|20110621052801|20110621052831|20110621052901|20110621052931|20110621053001|20110621053031|20110621053101|20110621053131|20110621053201|20110621053231|20110621053301|20110621053331|20110621053401|20110621053431|20110621053501|20110621053531|20110621053601|20110621053631|20110621053701|20110621053731|20110621053801|20110621053831|20110621053901|20110621053931|20110621054001|20110621054031|20110621054101|20110621054131|20110621054201|20110621054231|20110621054301|20110621054331|20110621054401|20110621054431|20110621054501|20110621054531|20110621054601|20110621054631|20110621054701|20110621054731|20110621054801|20110621054831|20110621054901|20110621054931|20110621055001|20110621055031|20110621055101|20110621055131|20110621055201|20110621055231|20110621055301|20110621055331|20110621055401|20110621055431|20110621055501|20110621055531|20110621055601|20110621055631|20110621055701|20110621055731|20110621055801|20110621055831|20110621055901|20110621055931|20110621060001|20110621060031|20110621060101|20110621060131|20110621060201|20110621060231|20110621060301|20110621060331|20110621060401|20110621060431|20110621060501|20110621060531|20110621060601|20110621060631|20110621060701|20110621060731|20110621060801|20110621060831|20110621060901|20110621060931|20110621061001|20110621061031|20110621061101|20110621061131|20110621061201|20110621061231|20110621061301|20110621061331|20110621061401|20110621061431|20110621061501|20110621061531|20110621061601|20110621061631|20110621061701|20110621061731|20110621061801|20110621061831|20110621061901|20110621061931|20110621062001|20110621062031|20110621062101|20110621062131|20110621062201|20110621062231|20110621062301|20110621062331|20110621062401|20110621062431|20110621062501|20110621062531|20110621062601|20110621062631|20110621062701|20110621062731|20110621062801|20110621062831|20110621062901|20110621062931|20110621063001|20110621063031|20110621063101|20110621063131|20110621063201|20110621063231|20110621063301|20110621063331|20110621063401|20110621063431|20110621063501|20110621063531|20110621063601|20110621063631|20110621063701|20110621063731|20110621063801|20110621063831|20110621063901|20110621063931|20110621064001|20110621064031|20110621064101|20110621064131|20110621064201|20110621064231|20110621064301|20110621064331|20110621064401|20110621064431|20110621064501|20110621064531|20110621064601|20110621064631|20110621064701|20110621064731|20110621064801|20110621064831|20110621064901|20110621064931|20110621065001|20110621065031|20110621065101|20110621065131|20110621065201|20110621065231|20110621065301|20110621065331|20110621065401|20110621065431|20110621065501|20110621065531|20110621065601|20110621065631|20110621065701|20110621065731|20110621065801|20110621065831|20110621065901|20110621065931|20110621070001|20110621070031|20110621070101|20110621070131|20110621070201|20110621070231|20110621070301|20110621070331|20110621070401|20110621070431|20110621070501|20110621070531|20110621070601|20110621070632|20110621070702|20110621070732|20110621070802|20110621070832|20110621070902|20110621070932|20110621071002|20110621071032|20110621071102|20110621071132|20110621071202|20110621071232|20110621071302|20110621071332|20110621071402|20110621071432|20110621071502|20110621071532|20110621071602|20110621071632|20110621071702|20110621071732|20110621071802|20110621071832|20110621071902|20110621071932|20110621072002|20110621072032|20110621072102|20110621072132|20110621072202|20110621072232|20110621072302|20110621072332|20110621072402|20110621072432|20110621072502|20110621072532|20110621072602|20110621072632|20110621072702|20110621072732|20110621072802|20110621072832|20110621072902|20110621072932|20110621073002|20110621073032|20110621073102|20110621073132|20110621073202|20110621073232|20110621073302|20110621073332|20110621073402|20110621073432|20110621073502|20110621073532|20110621073602|20110621073632|20110621073702|20110621073732|20110621073802|20110621073832|20110621073902|20110621073932|20110621074002|20110621074032|20110621074102|20110621074132|20110621074202|20110621074232|20110621074302|20110621074332|20110621074402|20110621074432|20110621074502|20110621074532|20110621074602|20110621074632|20110621074702|20110621074732|20110621074802|20110621074832|20110621074902|20110621074932|20110621075002|20110621075032|20110621075102|20110621075132|20110621075202|20110621075232|20110621075302|20110621075302|20110621075332|20110621075402|20110621075432|20110621075502|20110621075532|20110621075602|20110621075632|20110621075702|20110621075732|20110621075802|20110621075832|20110621075902|20110621075932|20110621080002|20110621080032|20110621080102|20110621080132|20110621080202|20110621080232|20110621080302|20110621080332|20110621080402|20110621080432|20110621080502|20110621080532|20110621080602|20110621080632|20110621080702|20110621080732|20110621080802|20110621080832|20110621080902|20110621080932|20110621081002|20110621081032|20110621081102|20110621081132|20110621081202|20110621081232|20110621081302|20110621081332|20110621081402|20110621081432|20110621081502|20110621081532|20110621081602|20110621081632|20110621081702|20110621081732|20110621081802|20110621081832|20110621081902|20110621081932|20110621082002|20110621082032|20110621082102|20110621082132|20110621082202|20110621082232|20110621082302|20110621082332|20110621082402|20110621082432|20110621082502|20110621082532|20110621082602|20110621082632|20110621082702|20110621082732|20110621082802|20110621082832|20110621082902|20110621082932|20110621083002|20110621083032|20110621083102|20110621083132|20110621083202|20110621083232|20110621083302|20110621083332|20110621083402|20110621083432|20110621083502|20110621083532|20110621083602|20110621083632|20110621083702|20110621083732|20110621083802|20110621083832|20110621083902|20110621083932|20110621084002|20110621084032|20110621084102|20110621084132|20110621084202|20110621084232|20110621084302|20110621084332|20110621084402|20110621084432|20110621084502|20110621084532|20110621084602|20110621084632|20110621084702|20110621084732|20110621084802|20110621084832|20110621084902|20110621084932|20110621085002|20110621085032|20110621085102|20110621085132|20110621085202|20110621085232|20110621085302|20110621085332|20110621085402|20110621085432|20110621085502|20110621085532|20110621085602|20110621085632|20110621085702|20110621085732|20110621085802|20110621085832|20110621085902|20110621085932|20110621090002|20110621090032|20110621090102|20110621090132|20110621090202|20110621090232|20110621090302|20110621090332|20110621090402|20110621090432|20110621090502|20110621090532|20110621090602|20110621090632|20110621090702|20110621090732|20110621090802|20110621090832|20110621090902|20110621090932|20110621091002|20110621091032|20110621091102|20110621091132|20110621091202|20110621091232|20110621091302|20110621091332|20110621091402|20110621091432|20110621091502|20110621091532|20110621091602|20110621091632|20110621091702|20110621091732|20110621091802|20110621091832|20110621091902|20110621091932|20110621092002|20110621092032|20110621092102|20110621092132|20110621092202|20110621092232|20110621092302|20110621092332|20110621092402|20110621092432|20110621092502|20110621092532|20110621092602|20110621092632|20110621092702|20110621092732|20110621092802|20110621092832|20110621092902|20110621092932|20110621093002|20110621093032|20110621093102|20110621093132|20110621093202|20110621093232|20110621093302|20110621093332|20110621093402|20110621093432|20110621093502|20110621093532|20110621093602|20110621093632|20110621093702|20110621093732|20110621093802|20110621093832|20110621093902|20110621093932|20110621094002|20110621094032|20110621094102|20110621094132|20110621094202|20110621094232|20110621094302|20110621094332|20110621094402|20110621094432|20110621094502|20110621094532|20110621094602|20110621094632|20110621094702|20110621094732|20110621094802|20110621094832|20110621094902|20110621094932|20110621095002|20110621095032|20110621095102|20110621095132|20110621095202|20110621095232|20110621095302|20110621095332|20110621095402|20110621095432|20110621095502|20110621095532|20110621095602|20110621095632|20110621095702|20110621095732|20110621095802|20110621095832|20110621095902|20110621095932|20110621100002|20110621100032|20110621100102|20110621100132|20110621100202|20110621100232|20110621100302|20110621100332|20110621100402|20110621100432|20110621100502|20110621100532|20110621100602|20110621100632|20110621100702|20110621100732|20110621100802|20110621100832|20110621100902|20110621100932|20110621101002|20110621101032|20110621101102|20110621101132|20110621101202|20110621101232|20110621101302|20110621101332|20110621101402|20110621101432|20110621101502|20110621101532|20110621101602|20110621101632|20110621101702|20110621101732|20110621101802|20110621101832|20110621101902|20110621101932|20110621102002|20110621102032|20110621102102|20110621102132|20110621102202|20110621102232|20110621102302|20110621102332|20110621102402|20110621102432|20110621102502|20110621102532|20110621102602|20110621102632|20110621102702|20110621102732|20110621102802|20110621102832|20110621102902|20110621102932|20110621103002|20110621103032|20110621103102|20110621103132|20110621103202|20110621103232|20110621103302|20110621103332|20110621103402|20110621103432|20110621103502|20110621103532|20110621103602|20110621103632|20110621103702|20110621103732|20110621103802|20110621103832|20110621103902|20110621103932|20110621104002|20110621104032|20110621104102|20110621104132|20110621104202|20110621104232|20110621104302|20110621104332|20110621104402|20110621104432|20110621104502|20110621104532|20110621104602|20110621104632|20110621104702|20110621104732|20110621104802|20110621104832|20110621104902|20110621104932|20110621105002|20110621105032|20110621105102|20110621105132|20110621105202|20110621105232|20110621105302|20110621105332|20110621105402|20110621105432|20110621105502|20110621105532|20110621105602|20110621105632|20110621105702|20110621105732|20110621105802|20110621105832|20110621105902|20110621105932|20110621110002|20110621110032|20110621110102|20110621110132|20110621110202|20110621110232|20110621110302|20110621110332|20110621110402|20110621110432|20110621110502|20110621110532|20110621110602|20110621110632|20110621110702|20110621110732|20110621110802|20110621110832|20110621110902|20110621110932|20110621111002|20110621111032|20110621111102|20110621111132|20110621111202|20110621111232|20110621111302|20110621111332|20110621111402|20110621111432|20110621111502|20110621111532|20110621111602|20110621111632|20110621111702|20110621111732|20110621111802|20110621111832|20110621111902|20110621111932|20110621112002|20110621112032|20110621112102|20110621112132|20110621112202|20110621112232|20110621112302|20110621112332|20110621112402|20110621112432|20110621112502|20110621112532|20110621112602|20110621112632|20110621112702|20110621112732|20110621112802|20110621112832|20110621112902|20110621112932|20110621113002|20110621113032|20110621113102|20110621113132|20110621113202|20110621113232|20110621113302|20110621113332|20110621113402|20110621113432|20110621113502|20110621113532|20110621113602|20110621113632|20110621113702|20110621113732|20110621113802|20110621113832|20110621113902|20110621113932|20110621114002|20110621114032|20110621114102|20110621114132|20110621114202|20110621114232|20110621114302|20110621114332|20110621114402|20110621114432|20110621114502|20110621114532|20110621114602|20110621114632|20110621114702|20110621114732|20110621114802|20110621114832|20110621114902|20110621114932|20110621115002|20110621115032|20110621115102|20110621115132|20110621115202|20110621115232|20110621115302|20110621115332|20110621115402|20110621115432|20110621115502|20110621115532|20110621115602|20110621115632|20110621115702|20110621115732|20110621115802|20110621115832|20110621115902|20110621115932|20110621120002|20110621120032|20110621120102|20110621120132|20110621120202|20110621120232|20110621120302|20110621120332|20110621120402|20110621120432|20110621120502|20110621120532|20110621120602|20110621120632|20110621120702|20110621120732|20110621120802|20110621120832|20110621120902|20110621120932|20110621121002|20110621121032|20110621121102|20110621121132|20110621121202|20110621121232|20110621121302|20110621121332|20110621121402|20110621121432|20110621121502|20110621121532|20110621121602|20110621121632|20110621121702|20110621121732|20110621121802|20110621121832|20110621121902|20110621121932|20110621122002|20110621122032|20110621122102|20110621122132|20110621122203|20110621122232|20110621122303|20110621122332|20110621122403|20110621122432|20110621122503|20110621122533|20110621122603|20110621122632|20110621122703|20110621122732|20110621122802|20110621122832|20110621122903|20110621122932|20110621123003|20110621123032|20110621123102|20110621123133|20110621123202|20110621123232|20110621123303|20110621123332|20110621123402|20110621123432|20110621123502|20110621123533|20110621123603|20110621123633|20110621123703|20110621123733|20110621123803|20110621123833|20110621123903|20110621123933|20110621124003|20110621124033|20110621124103|20110621124133|20110621124202|20110621124233|20110621124302|20110621124333|20110621124402|20110621124432|20110621124503|20110621124533|20110621124603|20110621124632|20110621124703|20110621124733|20110621124803|20110621124833|20110621124903|20110621124933|20110621125003|20110621125033|20110621125103|20110621125133|20110621125203|20110621125233|20110621125303|20110621125333|20110621125403|20110621125433|20110621125503|20110621125533|20110621125603|20110621125633|20110621125703|20110621125733|20110621125803|20110621125833|20110621125903|20110621125933|20110621130003|20110621130033|20110621130103|20110621130133|20110621130203|20110621130233|20110621130303|20110621130333|20110621130403|20110621130433|20110621130503|20110621130533|20110621130603|20110621130633|20110621130703|20110621130733|20110621130803|20110621130833|20110621130903|20110621130933|20110621131003|20110621131033|20110621131103|20110621131133|20110621131203|20110621131233|20110621131303|20110621131333|20110621131403|20110621131433|20110621131503|20110621131533|20110621131603|20110621131633|20110621131703|20110621131733|20110621131803|20110621131833|20110621131903|20110621131933|20110621132003|20110621132033|20110621132103|20110621132133|20110621132203|20110621132233|20110621132303|20110621132333|20110621132403|20110621132433|20110621132503|20110621132533|20110621132603|20110621132633|20110621132703|20110621132733|20110621132803|20110621132833|20110621132903|20110621132933|20110621133003|20110621133033|20110621133103|20110621133133|20110621133203|20110621133233|20110621133303|20110621133333|20110621133403|20110621133433|20110621133503|20110621133533|20110621133603|20110621133633|20110621133703|20110621133733|20110621133803|20110621133833|20110621133903|20110621133933|20110621134003|20110621134033|20110621134103|20110621134133|20110621134203|20110621134233|20110621134303|20110621134333|20110621134403|20110621134433|20110621134503|20110621134533|20110621134603|20110621134633|20110621134703|20110621134733|20110621134803|20110621134833|20110621134903|20110621134933|20110621135003|20110621135033|20110621135103|20110621135133|20110621135203|20110621135233|20110621135303|20110621135333|20110621135403|20110621135433|20110621135503|20110621135533|20110621135603|20110621135634|20110621135704|20110621135734|20110621135804|20110621135834|20110621135904|20110621135935|20110621140005|20110621140035|20110621140105|20110621140135|20110621140205|20110621140236|20110621140306|20110621140336|20110621140406|20110621140436|20110621140506|20110621140536|20110621140606|20110621140636|20110621140706|20110621140736|20110621140806|20110621140836|20110621140906|20110621140936|20110621141006|20110621141036|20110621141106|20110621141136|20110621141206|20110621141236|20110621141306|20110621141336|20110621141406|20110621141436|20110621141506|20110621141536|20110621141606|20110621141636|20110621141706|20110621141736|20110621141806|20110621141836|20110621141906|20110621141936|20110621142006|20110621142036|20110621142106|20110621142137|20110621142207|20110621142238|20110621142308|20110621142338|20110621142408|20110621142439|20110621142509|20110621142539|20110621142609|20110621142639|20110621142709|20110621142739|20110621142809|20110621142839|20110621142909|20110621142939|20110621143009|20110621143039|20110621143109|20110621143139|20110621143209|20110621143239|20110621143309|20110621143339|20110621143409|20110621143439|20110621143509|20110621143539|20110621143609|20110621143639|20110621143709|20110621143739|20110621143809|20110621143839|20110621143909|20110621143939|20110621144009|20110621144039|20110621144109|20110621144139|20110621144209|20110621144239|20110621144309|20110621144339|20110621144409|20110621144439|20110621144509|20110621144539|20110621144609|20110621144639|20110621144709|20110621144739|20110621144809|20110621144839|20110621144909|20110621144939|20110621145009|20110621145039|20110621145109|20110621145139|20110621145209|20110621145239|20110621145309|20110621145339|20110621145409|20110621145439|20110621145509|20110621145539|20110621145609|20110621145639|20110621145709|20110621145739|20110621145809|20110621145839|20110621145909|20110621145939|20110621150009|20110621150039|20110621150109|20110621150139|20110621150209|20110621150239|20110621150309|20110621150339|20110621150409|20110621150439|20110621150509|20110621150539|20110621150609|20110621150639|20110621150709|20110621150739|20110621150809|20110621150839|20110621150909|20110621150939|20110621151009|20110621151039|20110621151109|20110621151139|20110621151209|20110621151239|20110621151309|20110621151339|20110621151409|20110621151439|20110621151509|20110621151539|20110621151609|20110621151639|20110621151709|20110621151739|20110621151809|20110621151839|20110621151909|20110621151939|20110621152009|20110621152039|20110621152109|20110621152139|20110621152209|20110621152239|20110621152309|20110621152339|20110621152409|20110621152439|20110621152509|20110621152539|20110621152609|20110621152639|20110621152709|20110621152739|20110621152809|20110621152839|20110621152909|20110621152939|20110621153009|20110621153039|20110621153109|20110621153139|20110621153209|20110621153239|20110621153309|20110621153339|20110621153409|20110621153439|20110621153509|20110621153539|20110621153609|20110621153639|20110621153709|20110621153739|20110621153739|20110621153739|20110621153809|20110621153839|20110621153909|20110621153939|20110621154009|20110621154039|20110621154109|20110621154139|20110621154209|20110621154239|20110621154309|20110621154339|20110621154409|20110621154439|20110621154509|20110621154539|20110621154609|20110621154639|20110621154709|20110621154739|20110621154809|20110621154839|20110621154909|20110621154939|20110621155009|20110621155039|20110621155109|20110621155139|20110621155209|20110621155239|20110621155309|20110621155339|20110621155409|20110621155439|20110621155509|20110621155539|20110621155609|20110621155639|20110621155709|20110621155739|20110621155809|20110621155839|20110621155909|20110621155939|20110621160009|20110621160039|20110621160109|20110621160139|20110621160209|20110621160239|20110621160309|20110621160339|20110621160409|20110621160439|20110621160509|20110621160539|20110621160609|20110621160639|20110621160709|20110621160739|20110621160809|20110621160839|20110621160909|20110621160939|20110621161009|20110621161039|20110621161109|20110621161139|20110621161209|20110621161239|20110621161309|20110621161339|20110621161409|20110621161439|20110621161509|20110621161539|20110621161609|20110621161639|20110621161709|20110621161739|20110621161809|20110621161839|20110621161909|20110621161939|20110621162009|20110621162039|20110621162109|20110621162139|20110621162209|20110621162239|20110621162309|20110621162339|20110621162409|20110621162439|20110621162509|20110621162539|20110621162609|20110621162639|20110621162709|20110621162739|20110621162809|20110621162839|20110621162909|20110621162939|20110621163009|20110621163039|20110621163109|20110621163139|20110621163209|20110621163239|20110621163309|20110621163339|20110621163409|20110621163439|20110621163509|20110621163539|20110621163609|20110621163639|20110621163709|20110621163739|20110621163809|20110621163839|20110621163909|20110621163939|20110621164009|20110621164039|20110621164109|20110621164139|20110621164209|20110621164239|20110621164309|20110621164339|20110621164409|20110621164439|20110621164509|20110621164539|20110621164609|20110621164639|20110621164709|20110621164739|20110621164809|20110621164839|20110621164909|20110621164939|20110621165009|20110621165039|20110621165109|20110621165139|20110621165209|20110621165239|20110621165309|20110621165339|20110621165409|20110621165439|20110621165509|20110621165539|20110621165609|20110621165639|20110621165709|20110621165739|20110621165809|20110621165839|20110621165909|20110621165939|20110621170009|20110621170039|20110621170109|20110621170139|20110621170209|20110621170239|20110621170309|20110621170339|20110621170409|20110621170439|20110621170509|20110621170539|20110621170609|20110621170639|20110621170709|20110621170739|20110621170809|20110621170839|20110621170909|20110621170939|20110621171009|20110621171039|20110621171109|20110621171139|20110621171209|20110621171239|20110621171309|20110621171339|20110621171409|20110621171439|20110621171509|20110621171539|20110621171609|20110621171639|20110621171709|20110621171739|20110621171809|20110621171839|20110621171909|20110621171939|20110621172009|20110621172039|20110621172109|20110621172139|20110621172209|20110621172239|20110621172309|20110621172339|20110621172409|20110621172439|20110621172509|20110621172539|20110621172609|20110621172639|20110621172709|20110621172739|20110621172809|20110621172839|20110621172909|20110621172939|20110621173009|20110621173039|20110621173109|20110621173139|20110621173209|20110621173239|20110621173309|20110621173339|20110621173409|20110621173439|20110621173509|20110621173539|20110621173609|20110621173639|20110621173709|20110621173739|20110621173809|20110621173839|20110621173909|20110621173939|20110621174009|20110621174039|20110621174109|20110621174139|20110621174209|20110621174239|20110621174309|20110621174339|20110621174409|20110621174439|20110621174509|20110621174539|20110621174609|20110621174639|20110621174709|20110621174739|20110621174809|20110621174839|20110621174909|20110621174939|20110621175009|20110621175039|20110621175109|20110621175139|20110621175209|20110621175239|20110621175309|20110621175339|20110621175409|20110621175439|20110621175509|20110621175539|20110621175609|20110621175636|20110621175706|20110621175736|20110621175806|20110621175837|20110621175907|20110621175937|20110621180007|20110621180037|20110621180107|20110621180137|20110621180207|20110621180237|20110621180307|20110621180337|20110621180407|20110621180437|20110621180507|20110621180537|20110621180607|20110621180637|20110621180707|20110621180737|20110621180807|20110621180837|20110621180907|20110621180937|20110621181007|20110621181037|20110621181107|20110621181137|20110621181207|20110621181237|20110621181307|20110621181337|20110621181407|20110621181437|20110621181507|20110621181537|20110621181607|20110621181637|20110621181707|20110621181737|20110621181807|20110621181837|20110621181907|20110621181937|20110621182007|20110621182037|20110621182107|20110621182137|20110621182207|20110621182237|20110621182307|20110621182337|20110621182407|20110621182437|20110621182507|20110621182537|20110621182607|20110621182637|20110621182707|20110621182737|20110621182807|20110621182837|20110621182907|20110621182937|20110621183007|20110621183037|20110621183107|20110621183137|20110621183207|20110621183237|20110621183307|20110621183337|20110621183407|20110621183437|20110621183507|20110621183537|20110621183607|20110621183637|20110621183707|20110621183737|20110621183807|20110621183837|20110621183907|20110621183937|20110621184007|20110621184037|20110621184107|20110621184137|20110621184207|20110621184237|20110621184307|20110621184337|20110621184407|20110621184437|20110621184507|20110621184537|20110621184607|20110621184637|20110621184707|20110621184737|20110621184807|20110621184837|20110621184907|20110621184937|20110621185007|20110621185037|20110621185107|20110621185137|20110621185207|20110621185237|20110621185307|20110621185337|20110621185407|20110621185437|20110621185507|20110621185537|20110621185607|20110621185637|20110621185707|20110621185737|20110621185807|20110621185837|20110621185907|20110621185937|20110621190007|20110621190037|20110621190107|20110621190137|20110621190207|20110621190237|20110621190307|20110621190337|20110621190407|20110621190437|20110621190507|20110621190537|20110621190607|20110621190637|20110621190707|20110621190737|20110621190807|20110621190837|20110621190907|20110621190937|20110621191007|20110621191037|20110621191107|20110621191137|20110621191207|20110621191237|20110621191307|20110621191337|20110621191407|20110621191437|20110621191507|20110621191537|20110621191607|20110621191637|20110621191707|20110621191737|20110621191807|20110621191837|20110621191907|20110621191937|20110621192007|20110621192037|20110621192107|20110621192137|20110621192207|20110621192237|20110621192307|20110621192337|20110621192407|20110621192437|20110621192507|20110621192537|20110621192607|20110621192637|20110621192707|20110621192737|20110621192807|20110621192837|20110621192907|20110621192937|20110621193007|20110621193037|20110621193107|20110621193137|20110621193207|20110621193237|20110621193307|20110621193337|20110621193407|20110621193437|20110621193507|20110621193537|20110621193607|20110621193637|20110621193707|20110621193737|20110621193807|20110621193837|20110621193907|20110621193937|20110621194007|20110621194037|20110621194107|20110621194137|20110621194207|20110621194237|20110621194307|20110621194337|20110621194407|20110621194437|20110621194507|20110621194537|20110621194607|20110621194637|20110621194707|20110621194737|20110621194807|20110621194837|20110621194907|20110621194937|20110621195007|20110621195037|20110621195107|20110621195137|20110621195207|20110621195237|20110621195307|20110621195337|20110621195407|20110621195437|20110621195507|20110621195537|20110621195607|20110621195637|20110621195707|20110621195737|20110621195807|20110621195837|20110621195907|20110621195937|20110621200008|20110621200038|20110621200108|20110621200138|20110621200208|20110621200238|20110621200308|20110621200338|20110621200408|20110621200438|20110621200508|20110621200538|20110621200608|20110621200638|20110621200708|20110621200738|20110621200808|20110621200838|20110621200908|20110621200938|20110621201008|20110621201038|20110621201108|20110621201138|20110621201208|20110621201238|20110621201308|20110621201338|20110621201408|20110621201438|20110621201508|20110621201538|20110621201608|20110621201638|20110621201708|20110621201738|20110621201808|20110621201838|20110621201908|20110621201938|20110621202008|20110621202038|20110621202108|20110621202138|20110621202208|20110621202238|20110621202308|20110621202338|20110621202408|20110621202438|20110621202508|20110621202538|20110621202608|20110621202638|20110621202708|20110621202738|20110621202808|20110621202838|20110621202908|20110621202938|20110621203008|20110621203038|20110621203108|20110621203138|20110621203208|20110621203238|20110621203308|20110621203338|20110621203408|20110621203438|20110621203508|20110621203538|20110621203608|20110621203638|20110621203708|20110621203738|20110621203808|20110621203838|20110621203908|20110621203938|20110621204008|20110621204038|20110621204108|20110621204138|20110621204208|20110621204238|20110621204308|20110621204338|20110621204408|20110621204438|20110621204508|20110621204538|20110621204608|20110621204638|20110621204708|20110621204738|20110621204808|20110621204838|20110621204908|20110621204938|20110621205008|20110621205038|20110621205108|20110621205138|20110621205208|20110621205238|20110621205308|20110621205338|20110621205408|20110621205438|20110621205508|20110621205538|20110621205608|20110621205638|20110621205708|20110621205738|20110621205808|20110621205838|20110621205908|20110621205938|20110621210008|20110621210038|20110621210108|20110621210138|20110621210208|20110621210238|20110621210308|20110621210338|20110621210408|20110621210438|20110621210508|20110621210538|</categories><dataset seriesName="Series1">0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|20,88|21,96|44,64|63,36|64,8|66,6|65,52|58,68|68,4|71,28|71,28|75,24|76,68|73,08|78,12|81,72|77,76|80,64|83,16|79,56|78,12|21,24|79,56|81|82,08|83,16|56,88|66,96|86,4|82,08|27|74,88|83,88|82,44|84,24|88,2|84,6|82,44|84,24|84,96|85,32|84,96|82,44|83,16|85,68|84,6|82,8|84,24|86,4|85,32|81,36|82,08|82,44|81,36|82,8|82,44|80,64|85,32|84,24|81|75,24|81,72|84,6|81|80,64|73,44|66,6|81,72|82,08|84,24|85,32|87,84|87,84|79,56|85,32|84,6|83,16|81,72|76,32|68,76|82,44|68,76|79,56|84,24|84,24|82,08|73,8|85,68|85,68|85,32|84,96|88,2|85,68|86,4|80,28|80,64|82,08|84,6|83,52|82,08|83,52|82,44|81|71,28|28,8|75,96|72|80,64|79,92|87,84|77,04|82,44|86,76|83,88|75,96|82,8|78,84|79,92|79,56|82,8|81,36|82,44|84,6|83,16|81,72|85,32|78,12|19,08|38,16|44,28|67,68|79,2|74,16|71,64|78,48|72,36|65,88|31,32|72,36|83,88|85,68|84,6|87,48|81,72|81,36|82,8|80,64|76,68|86,76|86,76|87,12|85,32|86,4|87,48|87,84|87,48|83,52|83,52|64,08|70,56|86,04|83,88|86,04|82,44|82,8|86,4|84,6|84,6|81|80,28|72|80,28|81|79,2|77,4|81|68,76|76,68|75,6|74,88|47,88|50,4|48,24|78,84|79,56|81,36|81,72|77,76|77,4|68,04|57,24|73,08|79,56|82,08|80,64|79,2|76,32|77,76|77,4|75,6|84,24|79,56|83,52|82,08|77,76|77,4|81,72|77,4|82,08|79,56|80,28|80,28|77,4|77,4|77,4|80,28|21,6|43,92|25,92|27,72|52,56|35,28|82,8|82,44|81|77,04|75,24|80,28|83,88|74,16|19,44|72,36|47,16|60,48|63,36|68,4|73,08|67,68|62,64|53,28|25,56|20,88|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|6,48|33,48|42,84|0|61,56|55,08|66,24|56,16|67,68|63,72|43,2|46,08|66,96|41,76|88,56|81,72|86,4|85,68|89,28|85,68|84,24|89,64|75,24|72,36|78,48|81,72|85,32|81|81,36|86,76|87,48|89,64|93,6|89,64|80,64|84,96|84,24|75,96|57,6|55,44|55,08|58,32|70,92|84,6|87,12|85,32|85,68|86,4|86,76|87,84|83,52|85,32|86,76|79,92|12,24|81,36|0|0|0|0|15,48|79,2|83,88|84,96|82,44|82,08|79,2|74,16|80,28|80,28|84,24|79,92|82,44|79,2|86,04|79,92|83,16|63|71,28|73,44|79,56|80,28|73,08|76,68|75,24|71,64|77,4|83,88|78,48|77,4|77,4|83,52|80,28|77,76|83,88|83,16|72|78,48|78,48|83,88|83,16|76,32|74,16|71,28|30,24|71,64|54|71,28|47,52|19,08|44,28|16,2|23,04|42,84|17,64|13,68|0|0|0|0|0|0|0|11,16|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|18|0|45|2,88|71,28|79,92|89,64|87,48|87,84|87,84|87,48|87,84|87,84|87,12|87,12|87,48|84,6|88,2|77,4|75,96|51,12|73,8|44,28|51,12|56,52|33,84|59,4|70,56|5,4|23,76|66,96|63|22,68|27,36|21,96|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|1,44|21,6|30,6|77,76|68,04|13,68|81,36|86,4|87,84|84,24|66,24|0|0|0|79,92|86,76|40,32|56,88|47,88|43,56|17,28|0|0|0|0|0|0|0|0|0|0|0|0|5,76|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|}
  4. Thanks' what I really is looking for is an VB.net example that show step by step how to make a SQL databasedriven ZOOMLINE fushionchart by dataURL method. . I have huge database I and need to show 2 fields "speed" and "time" from a database table and be able to zoom into the plotted data best regards