Avatar billede dimle Nybegynder
04. februar 2003 - 11:46 Der er 20 kommentarer og
1 løsning

MSChart - hvad er nødvendigt??

Jeg sidder og har brugt et MSChart componentet til at vise grafer på mine aspx-sider i ASP.NET - Det kører også helt fint, men da jeg så vil se grafen på en anden somputer hvor der ikke har været installeret VB eller nogen form for .NET framework, så kan grafen ikke vises - der kommer bare et rødt kryds der hvor grafen skulle være lige som et billede der ikke kan vises - smatidig kommer en javascript fejl...

Er der nogen der ved hvad der er nød vendigt at have af filer (ocx, dll osv..) for at kunne se sådan en mschart-graf???
Avatar billede z42cool Nybegynder
04. februar 2003 - 11:56 #1
Du skal bruge selve mschart activex komponenten som sikkert hedder noget i stil med mschartX.cab|ocx altså mschart efterfulgt af et versionsnummer og så ocx eller cab til efternavn. Det der viser den i Explorer er noget i stil med:

<OBJECT ID="MSChart1" WIDTH=100% HEIGHT=95%
CLASSID="CLSID:31291E80-728C-11CF-93D5-0020AF99504A"
  codebase="mschart5.cab">
</OBJECT>

Og du skal derfor ligge mschart filen i samme bibliotek som din webside eller ændre object taggens codebase attribut. Hvis du har wrappet ActiveX kontrollen for at bruge den under .Net, så skal klienten også have .Net frameworket installeret, ellers er det ikke nødvendigt"
Avatar billede dimle Nybegynder
04. februar 2003 - 11:56 #2
+ 500 point til den der kan give et godt svar!!
Avatar billede z42cool Nybegynder
04. februar 2003 - 12:02 #3
Du bliver nødt til at fortælle hvordan du anvender MSChart komponenten, hvis du bruger den som et ActiveX komponent på klient siden, så er det kun nødvendigt at angive den korrekte codebase. Du kan enten selv have filen liggende på din server, eller du kan anvende microsofts ActiveX galleri vh.a. følgende:

<OBJECT ID="MSChart1" WIDTH=100% HEIGHT=95%
CLASSID="CLSID:31291E80-728C-11CF-93D5-0020AF99504A"
  codebase="http://activex.microsoft.com/controls/vb6/MSChrt20.cab">
</OBJECT>
Avatar billede dimle Nybegynder
04. februar 2003 - 12:02 #4
okay... filen hedder mschart.cab i det eksempel jeg har downloaded og brugt, men filen mschart.cab findes ikke!! Alligevel kan jeg godt se grafen på den computer hvor jeg har lavet projektet på!!

Jeg har derimod fundet en fil på computeren (her hvor det kører) som hedder mschart20.ocx - skulle det så virke hvis jeg ændrede codebase til den fil - altså sådan:

<OBJECT ID="MSChart1" WIDTH=100% HEIGHT=95%
CLASSID="CLSID:31291E80-728C-11CF-93D5-0020AF99504A"
  codebase="mschart.ocx">
</OBJECT>

...og så ligger filen mschart.ocx i den mappe på server hvor den aspx-side ligger som grafen vises fra??
Avatar billede dimle Nybegynder
04. februar 2003 - 12:05 #5
Jeg bruger den ikke som ActiveX - den laver javascript!!!!
Avatar billede askhoej Praktikant
04. februar 2003 - 12:17 #6
Brug dette eksempel og download sourcekoden:

http://www.dotnetjunkies.com/tutorials.aspx?tutorialid=634

/askhoej
Avatar billede dimle Nybegynder
04. februar 2003 - 12:23 #7
nej tak!! Det er et større projekt som ER lavet!!
Avatar billede dimle Nybegynder
04. februar 2003 - 12:24 #8
nå, ja det er faktisk den jeg har brugt!!
Avatar billede z42cool Nybegynder
04. februar 2003 - 12:32 #9
Men den renderer jo blot en <object> tag, så du skal enten flytte mschart.ocx til dit web dir og referere den i codebase attributten eller du kan bruge den microsoft har liggende vha. codebase="http://activex.microsoft.com/controls/vb6/MSChrt20.cab".
Avatar billede z42cool Nybegynder
04. februar 2003 - 12:37 #10
Avatar billede dimle Nybegynder
04. februar 2003 - 12:38 #11
ja, jeg har prøvet at bruge http://activex.microsoft.com/controls/vb6/MSChrt20.cab og den kommer godt nok og spørger om man vil installere/bruge den, men derefter er det lige vidt!!

Har også prøvet at bruge mschart20.ocx som codebase og ligge den ud men det giver samme... stadig ingen grafen og den samme javascript fejl!!
Avatar billede z42cool Nybegynder
04. februar 2003 - 12:44 #12
Kan du ikke prøve at copy-paste den af asp.net genererede html side, altså IE->vis kilde->copy&paste, og så smide den her så er det lidt nemmere for os at se hvad der går galt!
Avatar billede dimle Nybegynder
04. februar 2003 - 12:59 #13
jo værs'go!!!



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
    <HEAD>
        <title>Graph</title>
        <meta content="Microsoft Visual Studio 7.0" name="GENERATOR">
        <meta content="C#" name="CODE_LANGUAGE">
        <meta content="JavaScript" name="vs_defaultClientScript">
        <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
    </HEAD>
    <body MS_POSITIONING="GridLayout" style="PADDING-RIGHT:0px;PADDING-LEFT:0px;FONT-SIZE:8pt;PADDING-BOTTOM:0px;MARGIN:0px;PADDING-TOP:0px;FONT-FAMILY:verdana;BACKGROUND-COLOR:#bbbbbb">
        <center>
            <form name="Form1" method="post" action="Webform1.aspx?graphid=5" id="Form1">
<input type="hidden" name="__VIEWSTATE" value="dDwtMTY4MzAxMzg0NDs7PiGxuElE72b7aK1LpsgiJE3BlFzx" />

                <span><OBJECT ID=mschart1 codeBase=http://activex.microsoft.com/controls/vb6/MSChrt20.cab classid=clsid:3A2B370C-BA0A-11D1-B137-0000F8753F5D style='WIDTH:700px;HEIGHT:242px'></OBJECT><script language=JavaScript>document.forms[0].all['mschart1'].TitleText='  Staldtemperatur - sidste 7 dage  ';document.forms[0].all['mschart1'].ChartType=3;document.forms[0].all['mschart1'].RowCount=168;document.forms[0].all['mschart1'].ColumnCount=1;document.forms[0].all['mschart1'].ShowLegend=false;document.forms[0].all['mschart1'].Plot.Axis(0).CategoryScale.Auto=0;document.forms[0].all['mschart1'].Plot.Axis(0).CategoryScale.DivisionsPerLabel=24;document.forms[0].all['mschart1'].Plot.Axis(0).CategoryScale.DivisionsPerTick=24;document.forms[0].all['mschart1'].Plot.Axis(2).AxisScale.Hide=true;document.forms[0].all['mschart1'].RandomFill=false;document.forms[0].all['mschart1'].AllowSelections=false;document.forms[0].all['mschart1'].Title.VtFont.Size=10;document.forms[0].all['mschart1'].Title.VtFont.Style=1;document.forms[0].all['mschart1'].Plot.Axis(0).AxisTitle='Dag';document.forms[0].all['mschart1'].Plot.Axis(1).AxisTitle='Temperatur i °C';document.forms[0].all['mschart1'].Row=1;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,9;document.forms[0].all['mschart1'].Row=2;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,9;document.forms[0].all['mschart1'].Row=3;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,8;document.forms[0].all['mschart1'].Row=4;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,8;document.forms[0].all['mschart1'].Row=5;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,8;document.forms[0].all['mschart1'].Row=6;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,8;document.forms[0].all['mschart1'].Row=7;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,8;document.forms[0].all['mschart1'].Row=8;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,8;document.forms[0].all['mschart1'].Row=9;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,8;document.forms[0].all['mschart1'].Row=10;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,7;document.forms[0].all['mschart1'].Row=11;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,7;document.forms[0].all['mschart1'].Row=12;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,7;document.forms[0].all['mschart1'].Row=13;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,7;document.forms[0].all['mschart1'].Row=14;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,7;document.forms[0].all['mschart1'].Row=15;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,6;document.forms[0].all['mschart1'].Row=16;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,6;document.forms[0].all['mschart1'].Row=17;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,6;document.forms[0].all['mschart1'].Row=18;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,6;document.forms[0].all['mschart1'].Row=19;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,6;document.forms[0].all['mschart1'].Row=20;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,6;document.forms[0].all['mschart1'].Row=21;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,5;document.forms[0].all['mschart1'].Row=22;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,5;document.forms[0].all['mschart1'].Row=23;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,5;document.forms[0].all['mschart1'].Row=24;document.forms[0].all['mschart1'].RowLabel='9';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,5;document.forms[0].all['mschart1'].Row=25;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,5;document.forms[0].all['mschart1'].Row=26;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,4;document.forms[0].all['mschart1'].Row=27;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,5;document.forms[0].all['mschart1'].Row=28;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,4;document.forms[0].all['mschart1'].Row=29;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,4;document.forms[0].all['mschart1'].Row=30;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,4;document.forms[0].all['mschart1'].Row=31;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,5;document.forms[0].all['mschart1'].Row=32;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,4;document.forms[0].all['mschart1'].Row=33;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,3;document.forms[0].all['mschart1'].Row=34;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,4;document.forms[0].all['mschart1'].Row=35;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,4;document.forms[0].all['mschart1'].Row=36;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,4;document.forms[0].all['mschart1'].Row=37;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,3;document.forms[0].all['mschart1'].Row=38;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,3;document.forms[0].all['mschart1'].Row=39;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,3;document.forms[0].all['mschart1'].Row=40;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,2;document.forms[0].all['mschart1'].Row=41;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,3;document.forms[0].all['mschart1'].Row=42;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,3;document.forms[0].all['mschart1'].Row=43;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,3;document.forms[0].all['mschart1'].Row=44;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,3;document.forms[0].all['mschart1'].Row=45;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,3;document.forms[0].all['mschart1'].Row=46;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,2;document.forms[0].all['mschart1'].Row=47;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,1;document.forms[0].all['mschart1'].Row=48;document.forms[0].all['mschart1'].RowLabel='10';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,1;document.forms[0].all['mschart1'].Row=49;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,2;document.forms[0].all['mschart1'].Row=50;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,2;document.forms[0].all['mschart1'].Row=51;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,9;document.forms[0].all['mschart1'].Row=52;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,2;document.forms[0].all['mschart1'].Row=53;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27,1;document.forms[0].all['mschart1'].Row=54;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27;document.forms[0].all['mschart1'].Row=55;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27;document.forms[0].all['mschart1'].Row=56;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27;document.forms[0].all['mschart1'].Row=57;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27;document.forms[0].all['mschart1'].Row=58;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27;document.forms[0].all['mschart1'].Row=59;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27;document.forms[0].all['mschart1'].Row=60;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,9;document.forms[0].all['mschart1'].Row=61;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=27;document.forms[0].all['mschart1'].Row=62;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,8;document.forms[0].all['mschart1'].Row=63;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,9;document.forms[0].all['mschart1'].Row=64;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,7;document.forms[0].all['mschart1'].Row=65;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,8;document.forms[0].all['mschart1'].Row=66;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,9;document.forms[0].all['mschart1'].Row=67;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,9;document.forms[0].all['mschart1'].Row=68;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,8;document.forms[0].all['mschart1'].Row=69;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,9;document.forms[0].all['mschart1'].Row=70;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,8;document.forms[0].all['mschart1'].Row=71;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,7;document.forms[0].all['mschart1'].Row=72;document.forms[0].all['mschart1'].RowLabel='11';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,7;document.forms[0].all['mschart1'].Row=73;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,9;document.forms[0].all['mschart1'].Row=74;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,8;document.forms[0].all['mschart1'].Row=75;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,7;document.forms[0].all['mschart1'].Row=76;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,7;document.forms[0].all['mschart1'].Row=77;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,7;document.forms[0].all['mschart1'].Row=78;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,6;document.forms[0].all['mschart1'].Row=79;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,6;document.forms[0].all['mschart1'].Row=80;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,7;document.forms[0].all['mschart1'].Row=81;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,7;document.forms[0].all['mschart1'].Row=82;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,6;document.forms[0].all['mschart1'].Row=83;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,6;document.forms[0].all['mschart1'].Row=84;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,6;document.forms[0].all['mschart1'].Row=85;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,5;document.forms[0].all['mschart1'].Row=86;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,6;document.forms[0].all['mschart1'].Row=87;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,5;document.forms[0].all['mschart1'].Row=88;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,5;document.forms[0].all['mschart1'].Row=89;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,5;document.forms[0].all['mschart1'].Row=90;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,5;document.forms[0].all['mschart1'].Row=91;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,5;document.forms[0].all['mschart1'].Row=92;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,6;document.forms[0].all['mschart1'].Row=93;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,4;document.forms[0].all['mschart1'].Row=94;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,4;document.forms[0].all['mschart1'].Row=95;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,2;document.forms[0].all['mschart1'].Row=96;document.forms[0].all['mschart1'].RowLabel='12';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,6;document.forms[0].all['mschart1'].Row=97;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,4;document.forms[0].all['mschart1'].Row=98;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,4;document.forms[0].all['mschart1'].Row=99;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,4;document.forms[0].all['mschart1'].Row=100;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,4;document.forms[0].all['mschart1'].Row=101;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,3;document.forms[0].all['mschart1'].Row=102;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,3;document.forms[0].all['mschart1'].Row=103;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,3;document.forms[0].all['mschart1'].Row=104;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,3;document.forms[0].all['mschart1'].Row=105;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,2;document.forms[0].all['mschart1'].Row=106;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,3;document.forms[0].all['mschart1'].Row=107;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,2;document.forms[0].all['mschart1'].Row=108;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,3;document.forms[0].all['mschart1'].Row=109;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,1;document.forms[0].all['mschart1'].Row=110;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,2;document.forms[0].all['mschart1'].Row=111;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,2;document.forms[0].all['mschart1'].Row=112;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26;document.forms[0].all['mschart1'].Row=113;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,2;document.forms[0].all['mschart1'].Row=114;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,1;document.forms[0].all['mschart1'].Row=115;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,1;document.forms[0].all['mschart1'].Row=116;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,3;document.forms[0].all['mschart1'].Row=117;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,1;document.forms[0].all['mschart1'].Row=118;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,1;document.forms[0].all['mschart1'].Row=119;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,1;document.forms[0].all['mschart1'].Row=120;document.forms[0].all['mschart1'].RowLabel='13';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26;document.forms[0].all['mschart1'].Row=121;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,1;document.forms[0].all['mschart1'].Row=122;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26;document.forms[0].all['mschart1'].Row=123;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,9;document.forms[0].all['mschart1'].Row=124;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,9;document.forms[0].all['mschart1'].Row=125;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=126;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=127;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=128;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=129;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=130;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=131;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=132;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=133;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=134;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=135;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=136;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=137;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=138;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=139;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=140;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26;document.forms[0].all['mschart1'].Row=141;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=142;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=143;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=144;document.forms[0].all['mschart1'].RowLabel='14';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=145;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,6;document.forms[0].all['mschart1'].Row=146;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=147;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=148;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=149;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=150;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=151;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,6;document.forms[0].all['mschart1'].Row=152;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=153;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=154;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,9;document.forms[0].all['mschart1'].Row=155;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=156;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=157;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,8;document.forms[0].all['mschart1'].Row=158;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,9;document.forms[0].all['mschart1'].Row=159;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,4;document.forms[0].all['mschart1'].Row=160;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,3;document.forms[0].all['mschart1'].Row=161;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,4;document.forms[0].all['mschart1'].Row=162;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,4;document.forms[0].all['mschart1'].Row=163;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,4;document.forms[0].all['mschart1'].Row=164;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26;document.forms[0].all['mschart1'].Row=165;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,9;document.forms[0].all['mschart1'].Row=166;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=26,1;document.forms[0].all['mschart1'].Row=167;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;document.forms[0].all['mschart1'].Row=168;document.forms[0].all['mschart1'].RowLabel='15';document.forms[0].all['mschart1'].Column=1;document.forms[0].all['mschart1'].ColumnLabel='Staldtemperatur';document.forms[0].all['mschart1'].Data=25,7;</script></span>
            </form>
        </center>
    </body>
</HTML>
Avatar billede z42cool Nybegynder
04. februar 2003 - 13:35 #14
Så tror jeg at jeg har den. Du skal også have en:

<object CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331"
id="Microsoft_Licensed_Class_Manager_1_0">
  <param NAME="LPKPath" VALUE="chart.lpk">
</object>

hvor den fil som LPKPath peger på skal genereres af det tool som du kan hente her: http://msdn.microsoft.com/downloads/default.asp?url=/downloads/sample.asp?url=/msdn-files/027/001/630/msdncompositedoc.xml

En relativt udførlig beskrivelse kan findes her: http://www.4guysfromrolla.com/webtech/MSChartExample.shtml
Avatar billede z42cool Nybegynder
04. februar 2003 - 13:39 #15
Jeg skal måske lige bemærke at den maskine du kører LPKTool på skal have registreret MSChart kontrollen, men det har du jo på din udviklingsmaskine så du kan bare lave .lpk filen der og så kopiere den til din produktionsserver!
Avatar billede dimle Nybegynder
04. februar 2003 - 13:42 #16
okay.. det prøver jeg lige hvis det jeg er ved i øjeblikket ikke virker!!
Avatar billede dimle Nybegynder
04. februar 2003 - 14:03 #17
Skal begge dele med nu?? - altså sådan:

<object CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331"
id="Microsoft_Licensed_Class_Manager_1_0">
  <param NAME="LPKPath" VALUE="mschart5.lpk">
</object>

<OBJECT ID="MSChart1" WIDTH=100% HEIGHT=95%
CLASSID="CLSID:31291E80-728C-11CF-93D5-0020AF99504A"
  codebase="mschart20.cab">
</OBJECT>
Avatar billede dimle Nybegynder
04. februar 2003 - 14:14 #18
Nu har jeg bare sat denne ind i stedet for den anden, men det virker stadig ikke!!!!??

<object CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331"
id="mschart1">
  <param NAME="LPKPath" VALUE="IMOChart.lpk">
</object>


Den kommmer med javascript fejlen:
document.forms.0.all.plot er ikke et objekt
Avatar billede z42cool Nybegynder
04. februar 2003 - 14:15 #19
Ja! Og så skal <param NAME="LPKPath" VALUE="mschart5.lpk"> naturligvis pege på den fil du har genereret med LPKTool. Jeg har fået det til at virke med:

<object CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331"
id="Microsoft_Licensed_Class_Manager_1_0">
  <param NAME="LPKPath" VALUE="chart.lpk">
</object>
<OBJECT ID=mschart1 codeBase=http://activex.microsoft.com/controls/vb6/MSChrt20.cab classid=clsid:3A2B370C-BA0A-11D1-B137-0000F8753F5D style='WIDTH:700px;HEIGHT:242px'></OBJECT>

Vær opmærksom på at jeg benytter mschrt20.cab hos Microsoft, men du kan jo også bare hente den hjem og hoste den lokalt!
Avatar billede z42cool Nybegynder
04. februar 2003 - 14:22 #20
Det skal se sådan her ud:


            <form name="Form1" method="post" action="Webform1.aspx?graphid=5" id="Form1">
<input type="hidden" name="__VIEWSTATE" value="dDwtMTY4MzAxMzg0NDs7PiGxuElE72b7aK1LpsgiJE3BlFzx" />
<object CLASSID="clsid:5220cb21-c88d-11cf-b347-00aa00a28331"
id="Microsoft_Licensed_Class_Manager_1_0">
  <param NAME="LPKPath" VALUE="IMOChart.lpk">
</object>
                <span><OBJECT ID=mschart1 codeBase=http://activex.microsoft.com/controls/vb6/MSChrt20.cab classid=clsid:3A2B370C-BA0A-11D1-B137-0000F8753F5D style='WIDTH:700px;HEIGHT:242px'></OBJECT>

Du skal altså have 2 <object> tags med hvert sit objekt! Og så skal selve chart <object> taggen selvfølgelig have samme ID attribut som du anvende i dit javascript!
Avatar billede dimle Nybegynder
04. februar 2003 - 14:27 #21
SÅ VIRKER DET SGU!!!

tak for hjælpen du får dine point!!
Avatar billede Ny bruger Nybegynder

Din løsning...

Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.

Loading billede Opret Preview
Kategori
IT-kurser om Microsoft 365, sikkerhed, personlig vækst, udvikling, digital markedsføring, grafisk design, SAP og forretningsanalyse.

Log ind eller opret profil

Hov!

For at kunne deltage på Computerworld Eksperten skal du være logget ind.

Det er heldigvis nemt at oprette en bruger: Det tager to minutter og du kan vælge at bruge enten e-mail, Facebook eller Google som login.

Du kan også logge ind via nedenstående tjenester