Welcome Guest Search | Active Topics |

JqChart with DateTime Axis Hang with some sort of Data
Pooya
#1 Posted : Sunday, December 16, 2012 6:35:04 AM(UTC)
Rank: Member

Groups: Registered
Joined: 9/17/2011(UTC)
Posts: 23

Thanks: 2 times
Was thanked: 0 time(s) in 0 post(s)
Hi

I Create a chart to show price data for 5 days. but as I say in tittle Browser stop working.
I prepare two demos:

1. First Demo work Perfectly
Code:
$(document).ready(function () {
   
var data = '201212100900,4254,859725;201212100901,4301,2085750;201212100902,4315,2606793;201212100903,4316,1381874;201212100904,4316,1601184;201212100905,4315,1276202;201212100906,4312,18459;201212100907,4290,5000;201212100908,4297,61618;201212100909,4301,83816;201212100910,4297,30840;201212100911,4290,2694;';

var intraDayData=[];
   
var rows = data.split(';');
var cols;
var RowDate;

                        var iii;
                        for (iii = 0; iii < rows.length-1; iii++) {
                            cols = rows[iii].split(',');

                            RowDate = new Date(parseInt(cols[0].substring(0, 4)), parseInt(cols[0].substring(4, 6), 10) - 1, cols[0].substring(6, 8),
                                (parseInt(cols[0].substring(8, 10), 10) ) * 8,
                                parseInt(cols[0].substring(10), 10) * 8);

                            intraDayData.push([RowDate, parseInt(cols[1], 10)]);

                        }

   
                        $('#jqChart').jqChart({
                            legend: { visible: false },
                            border: { lineWidth: 0, padding: 0 },
                            axes: [{ type: 'linear', location: 'left', width: 60 }, { type: 'dateTime', location: 'bottom', skipEmptyDays: true, labels: { lineWidth: 1, visible: false }, majorTickMarks: { visible: false }, minorGridLines: { lineWidth: 1, strokeStyle: '#eeeeee'} }],
                            series: [{ type: 'line', markers: { size: 0},data:intraDayData }]
                        });



        });



2. Same Code as above but with another data cause browser stop working:
Code:
$(document).ready(function () {
   
var data = '201212100900,4254,859725;201212100901,4301,2085750;201212100902,4315,2606793;201212100903,4316,1381874;201212100904,4316,1601184;201212100905,4315,1276202;201212100906,4312,18459;201212100907,4290,5000;201212100908,4297,61618;201212100909,4301,83816;201212100910,4297,30840;201212100911,4290,2694;201212100912,4292,48334;201212100913,4291,455664;201212100914,4287,99987;201212100915,4280,92869;201212100916,4279,2008;201212100917,4261,113221;201212100918,4266,16650;201212100919,4268,15781;201212100920,4267,54872;201212100921,4263,82442;201212100922,4257,106468;201212100923,4255,84337;201212100924,4259,27000;201212100925,4257,600;201212100926,4254,143053;201212100927,4259,25000;201212100928,4259,244344;201212100929,4264,173537;201212100930,4268,41205;201212100931,4260,480739;201212100932,4260,333373;201212100933,4261,175086;201212100934,4263,123800;201212100935,4259,158900;201212100936,4259,31251;201212100937,4258,129586;201212100938,4260,14800;201212100939,4257,10225;201212100940,4257,5780;201212100941,4257,30570;201212100942,4257,204150;201212100943,4260,18000;201212100944,4261,30000;201212100945,4257,160185;201212100946,4259,37072;201212100947,4256,1500;201212100948,4259,117000;201212100949,4260,204468;201212100950,4259,120600;201212100951,4259,120000;201212100952,4259,8000;201212100953,4260,110000;201212100954,4260,30387;201212100955,4260,111000;201212100956,4258,16300;201212100957,4256,100180;201212100958,4259,3240;201212100959,4259,41965;201212101000,4256,67800;201212101001,4258,39057;201212101002,4258,26760;201212101003,4259,47738;201212101004,4259,11596;201212101005,4256,28634;201212101006,4259,78934;201212101007,4258,38362;201212101008,4257,161538;201212101009,4256,180630;201212101010,4259,361247;201212101011,4259,36500;201212101012,4259,57867;201212101013,4258,46613;201212101014,4258,38120;201212101015,4259,61000;201212101016,4260,30182;201212101017,4259,68398;201212101018,4257,24925;201212101019,4255,50080;201212101020,4254,102020;201212101021,4254,33841;201212101022,4255,21861;201212101023,4256,16030;201212101024,4255,6600;201212101025,4254,10540;201212101026,4254,79654;201212101027,4254,26688;201212101028,4254,99516;201212101029,4254,12156;201212101030,4254,20200;201212101031,4251,434148;201212101032,4250,536765;201212101033,4249,87158;201212101034,4240,127538;201212101035,4249,7316;201212101036,4231,137481;201212101037,4240,11210;201212101038,4226,7100;201212101039,4224,14871;201212101040,4226,31019;201212101041,4227,42000;201212101042,4229,80;201212101043,4229,120;201212101045,4233,18504;201212101046,4224,137064;201212101047,4223,33583;201212101048,4237,4833;201212101049,4226,53138;201212101050,4221,5429;201212101052,4222,28685;201212101053,4230,5449;201212101054,4221,26639;201212101055,4216,30461;201212101056,4222,7720;201212101057,4228,60596;201212101058,4222,2000;201212101059,4229,11980;201212101100,4229,840;201212101101,4229,17710;201212101102,4238,39440;201212101103,4230,10000;201212101104,4240,25700;201212101105,4235,59875;201212101106,4240,4690;201212101108,4239,2173;201212101109,4239,22480;201212101110,4238,13352;201212101111,4239,20000;201212101112,4239,4700;201212101113,4233,41000;201212101114,4238,28601;201212101115,4239,4474;201212101116,4233,74639;201212101117,4230,26250;201212101118,4230,1140;201212101119,4230,400;201212101120,4230,2300;201212101121,4229,75500;201212101122,4238,77064;201212101123,4240,31936;201212101124,4238,2780;201212101125,4236,2060;201212101126,4240,11800;201212101127,4240,9835;201212101128,4239,149055;201212101129,4241,50200;201212101130,4247,96635;201212101131,4249,34775;201212101132,4245,73644;201212101134,4235,110300;201212101135,4232,230925;201212101136,4230,4690;201212101137,4232,49693;201212101138,4231,37274;201212101139,4223,113000;201212101140,4225,10000;201212101141,4224,238433;201212101142,4218,58607;201212101143,4219,12501;201212101144,4220,70200;201212101145,4219,122799;201212101146,4214,300000;201212101147,4216,2000;201212101148,4239,1408;201212101149,4238,131000;201212101150,4226,93740;201212101151,4223,115850;201212101152,4223,153334;201212101153,4230,43928;201212101154,4231,24030;201212101155,4235,6148;201212101156,4230,125190;201212101157,4225,258328;201212101158,4220,202213;201212101159,4229,178109;201212110900,4254,62830;201212110901,4252,9400;201212110902,4254,10000;201212110903,4262,70013;201212110904,4268,57860;201212110905,4270,30813;201212110906,4290,20000;201212110907,4275,101926;201212110908,4260,167196;201212110909,4269,77316;201212110910,4269,26573;201212110911,4269,213163;201212110912,4287,79157;201212110913,4292,80500;201212110914,4298,121100;201212110915,4296,178560;201212110916,4293,77426;201212110917,4284,55180;201212110918,4285,25354;201212110919,4284,102780;201212110920,4280,74288;201212110922,4276,10000;201212110923,4288,48000;201212110924,4280,34370;201212110925,4280,50000;201212110926,4285,1430;201212110927,4289,95700;201212110928,4290,10136;201212110929,4290,191633;201212110930,4292,305727;201212110931,4293,153750;201212110932,4293,13804;201212110933,4294,93000;201212110934,4294,10;201212110935,4290,11087;201212110936,4290,6010;201212110937,4290,14610;201212110938,4290,15760;201212110939,4290,63100;201212110940,4293,62505;201212110941,4290,137075;201212110942,4286,12110;201212110943,4290,98229;201212110944,4291,44704;201212110945,4290,6700;201212110946,4290,263422;201212110947,4289,6090;201212110948,4279,18918;201212110949,4280,11100;201212110950,4272,126272;201212110951,4271,38562;201212110952,4280,6000;201212110953,4280,7015;201212110954,4283,8500;201212110955,4285,1195;201212110956,4281,20745;201212110958,4272,97300;201212110959,4272,2538;201212111000,4273,107900;201212111001,4274,135670;201212111002,4272,102985;201212111003,4272,68696;201212111004,4272,44261;201212111005,4275,10835;201212111006,4272,36520;201212111007,4278,5700;201212111008,4271,267953;201212111009,4260,247817;201212111010,4266,9657;201212111011,4261,47009;201212111012,4260,102001;201212111013,4258,118991;201212111014,4250,608077;201212111015,4250,115131;201212111016,4250,64000;201212111017,4250,24457;201212111018,4256,20000;201212111019,4250,2450;201212111020,4250,58096;201212111021,4249,36025;201212111022,4246,1755;201212111023,4245,107035;201212111024,4242,29038;201212111025,4245,2810;201212111026,4240,15096;201212111027,4239,134371;201212111028,4225,409184;201212111029,4204,593687;201212111030,4200,425180;201212111031,4212,167000;201212111032,4205,66796;201212111033,4240,47688;201212111035,4249,500;201212111039,4247,100;201212111041,4226,30583;201212111042,4222,104600;201212111046,4235,233016;201212111047,4238,7050;201212111048,4235,748;201212111049,4239,86624;201212111050,4231,5080;201212111051,4235,2105;201212111052,4231,2000;201212111054,4231,710;201212111055,4231,8888;201212111056,4232,6631;201212111057,4248,99500;201212111058,4232,23779;201212111100,4232,19000;201212111101,4231,1500;201212111102,4245,1070;201212111103,4246,1010;201212111104,4231,13610;201212111105,4246,500;201212111106,4230,54396;201212111107,4217,58000;201212111108,4207,173475;201212111109,4205,31500;201212111112,4210,10000;201212111113,4220,3288;201212111115,4219,500;201212111116,4214,6335;201212111117,4220,2000;201212111118,4215,48718;201212111119,4210,640;201212111120,4206,190007;201212111121,4213,10000;201212111122,4210,12700;201212111123,4213,217181;201212111124,4220,68728;201212111125,4220,49831;201212111126,4220,46767;201212111127,4221,3900;201212111128,4232,1000;201212111129,4231,144188;201212111130,4232,94329;201212111131,4230,117771;201212111132,4232,121421;201212111133,4231,105820;201212111134,4230,320;201212111135,4230,105500;201212111136,4229,100000;201212111137,4229,36960;201212111138,4229,365424;201212111139,4224,267486;201212111140,4210,175165;201212111141,4214,40273;201212111142,4210,51210;201212111143,4210,111090;201212111144,4211,65027;201212111145,4207,80681;201212111146,4208,72307;201212111147,4207,29960;201212111148,4204,312022;201212111149,4203,210341;201212111150,4207,44000;201212111151,4207,35611;201212111152,4207,1913;201212111153,4200,568032;201212111154,4199,375361;201212111155,4198,74374;201212111156,4196,153793;201212111157,4198,30100;201212111158,4198,71340;201212111159,4199,55150;201212120900,4189,135378;201212120902,4178,5900;201212120903,4166,4183;201212120904,4162,22676;201212120905,4166,30845;201212120906,4166,8650;201212120907,4165,36633;201212120908,4165,100000;201212120909,4167,127267;201212120910,4169,95600;201212120911,4174,21655;201212120912,4170,1000;201212120913,4170,68800;201212120914,4168,20698;201212120915,4168,6800;201212120916,4168,3010;201212120917,4168,2000;201212120918,4170,15000;201212120919,4168,139412;201212120920,4168,31534;201212120921,4169,32374;201212120922,4169,43961;201212120923,4168,252391;201212120924,4166,89000;201212120925,4165,69566;201212120926,4163,105720;201212120927,4163,199468;201212120928,4162,55000;201212120929,4167,120000;201212120930,4165,4000;201212120931,4162,198021;201212120932,4161,62253;201212120933,4161,109460;201212120934,4161,22185;201212120935,4161,177746;201212120936,4161,54088;201212120937,4162,30010;201212120938,4161,121730;201212120939,4161,89800;201212120940,4161,104000;201212120941,4161,122500;201212120942,4160,460850;201212120943,4153,220850;201212120944,4151,470520;201212120945,4149,430618;201212120946,4146,18530;201212120947,4146,41438;201212120948,4148,38000;201212120949,4149,113185;201212120950,4146,33135;201212120951,4145,54000;201212120952,4142,137100;201212120953,4140,167086;201212120954,4142,94000;201212120955,4142,9471;201212120956,4146,1430;201212120957,4142,238;201212120958,4141,24031;201212120959,4141,25100;201212121000,4141,70925;201212121001,4141,106305;201212121002,4148,4300;201212121004,4149,172939;201212121005,4159,128950;201212121006,4160,173977;201212121007,4169,109386;201212121008,4178,217491;201212121009,4181,84657;201212121010,4176,96250;201212121011,4179,104800;201212121013,4173,264;201212121014,4172,10000;201212121015,4171,5861;201212121016,4160,126369;201212121018,4161,6602;201212121020,4170,1090;201212121021,4161,25;201212121022,4160,144000;201212121023,4160,15000;201212121024,4160,124150;201212121025,4160,35001;201212121026,4159,314792;201212121027,4157,30690;201212121028,4155,1891;201212121029,4155,40795;201212121030,4155,3168;201212121031,4155,50;201212121032,4159,5500;201212121033,4152,100000;201212121034,4159,121718;201212121035,4150,499850;201212121036,4150,104400;201212121037,4160,40;201212121038,4160,40;201212121039,4160,12189;201212121040,4157,14000;201212121041,4160,3562;201212121042,4154,1316;201212121043,4154,6616;201212121044,4155,7016;201212121045,4157,3449;201212121046,4156,30769;201212121047,4151,26388;201212121048,4152,2570;201212121049,4152,19788;201212121050,4151,548;201212121051,4154,8301;201212121052,4152,5000;201212121053,4152,5000;201212121054,4154,85967;201212121055,4153,1000;201212121057,4154,1500;201212121058,4151,74000;201212121059,4151,44000;201212121100,4151,103480;201212121101,4152,53600;201212121102,4152,22413;201212121103,4155,36010;201212121104,4158,11990;201212121105,4159,18492;201212121106,4159,61191;201212121107,4155,11000;201212121108,4158,4399;201212121109,4157,3500;201212121111,4159,24000;201212121113,4158,398178;201212121114,4159,196775;201212121115,4158,4227;201212121116,4158,100000;201212121117,4160,3500;201212121118,4160,3;201212121119,4162,18245;201212121120,4160,40000;201212121122,4160,39200;201212121123,4160,11000;201212121124,4160,61545;201212121125,4160,55400;201212121126,4161,44180;201212121128,4161,23090;201212121129,4161,1;201212121130,4168,458917;201212121131,4170,53751;201212121132,4169,25012;201212121133,4171,19250;201212121134,4170,22903;201212121135,4170,1000;201212121136,4170,70000;201212121137,4171,10000;201212121138,4170,100000;201212121139,4170,17620;201212121140,4171,30000;201212121141,4170,77700;201212121142,4171,2488;201212121143,4174,75800;201212121144,4174,19287;201212121145,4174,25147;201212121146,4177,52844;201212121147,4179,58965;201212121148,4175,63793;201212121149,4171,129926;201212121150,4170,76885;201212121151,4170,91000;201212121152,4171,39215;201212121153,4170,130943;201212121154,4170,213521;201212121155,4168,41838;201212121156,4170,59407;201212121157,4179,10601629;201212121158,4184,80220;201212121159,4179,141768;201212150900,4200,326734;201212150901,4218,37011;201212150902,4254,684353;201212150903,4274,4087;201212150904,4260,54945;201212150905,4259,203365;201212150907,4259,69415;201212150908,4240,4000;201212150909,4222,119499;201212150910,4224,5000;201212150912,4250,53906;201212150913,4258,219315;201212150914,4242,10750;201212150916,4259,7000;201212150917,4259,10000;201212150918,4259,70000;201212150919,4259,14016;201212150921,4242,100000;201212150922,4239,67336;201212150923,4239,5000;201212150927,4248,1171;201212150928,4248,2810;201212150929,4240,8663;201212150930,4246,698;201212150932,4243,12202;201212150933,4240,25500;201212150934,4240,9204;201212150935,4230,73166;201212150936,4223,1000;201212150937,4220,33600;201212150938,4214,20250;201212150939,4214,1000;201212150940,4215,34301;201212150941,4211,141377;201212150942,4211,30906;201212150943,4210,54030;201212150944,4210,53906;201212150945,4211,60;201212150946,4227,5533;201212150947,4211,20;201212150948,4230,200000;201212150951,4214,5090;201212150952,4214,10000;201212150953,4214,20000;201212150955,4223,400;201212150956,4227,3530;201212150959,4214,71429;201212151000,4218,6766;201212151001,4212,25582;201212151002,4219,420;201212151003,4212,86803;201212151004,4211,152942;201212151005,4205,179000;201212151006,4201,30385;201212151007,4201,250;201212151008,4200,142783;201212151009,4192,1200;201212151011,4193,14677;201212151012,4198,998;201212151013,4192,45900;201212151014,4193,800;201212151015,4193,10000;201212151016,4198,4002;201212151017,4200,75998;201212151019,4194,8127;201212151020,4195,20000;201212151023,4194,55404;201212151024,4193,73750;201212151025,4192,26250;201212151027,4196,123750;201212151029,4199,10500;201212151031,4198,6000;201212151032,4198,94800;201212151033,4200,200000;201212151034,4198,21000;201212151035,4193,59453;201212151036,4196,3400;201212151037,4197,200000;201212151039,4199,1000;201212151040,4199,3000;201212151043,4199,100000;201212151044,4200,5238;201212151045,4201,150200;201212151047,4198,138034;201212151049,4199,70700;201212151050,4198,59000;201212151051,4192,492;201212151053,4192,24000;201212151056,4199,800;201212151058,4194,70000;201212151059,4197,872;201212151100,4195,10828;201212151102,4199,50000;201212151104,4199,29430;201212151105,4199,88303;201212151106,4200,161357;201212151107,4205,29238;201212151108,4215,174914;201212151109,4222,58951;201212151110,4211,1370;201212151111,4205,131000;201212151112,4205,2011;201212151113,4202,14165;201212151114,4200,4000;201212151115,4199,100220;201212151116,4200,47002;201212151117,4200,27000;201212151118,4200,85000;201212151119,4202,10093;201212151120,4199,33324;201212151121,4199,120000;201212151122,4200,2000;201212151123,4200,60010;201212151124,4200,69289;201212151125,4200,102444;201212151126,4199,308754;201212151127,4195,199920;201212151129,4193,1028;201212151130,4193,99990;201212151131,4191,103790;201212151132,4191,10000;201212151133,4195,15000;201212151134,4197,30241;201212151135,4198,178450;201212151136,4200,20500;201212151137,4200,227775;201212151138,4199,160725;201212151139,4200,100500;201212151140,4200,107408;201212151141,4200,77260;201212151142,4200,40;201212151143,4199,63140;201212151144,4204,157287;201212151145,4201,32621;201212151146,4200,200010;201212151147,4210,20000;201212151148,4200,182018;201212151149,4200,119400;201212151150,4199,4300;201212151151,4199,8359;201212151152,4203,5711;201212151153,4201,60100;201212151154,4200,117116;201212151155,4200,37944;201212151156,4200,26100;201212151157,4209,1000;201212151158,4204,25300;201212151159,4208,122500;201212160900,4230,328648;201212160904,4249,230;201212160905,4234,44700;201212160906,4247,100000;201212160907,4234,5050;201212160908,4232,69150;201212160910,4221,1000;201212160911,4220,2500;201212160912,4230,100000;201212160913,4230,11250;201212160914,4230,19192;201212160915,4228,81158;201212160916,4221,149830;201212160917,4230,48087;201212160918,4230,2000;201212160919,4231,22300;201212160920,4239,500;201212160921,4230,53400;201212160922,4230,49800;201212160923,4230,4200;201212160924,4238,4690;201212160925,4231,5813;201212160926,4230,7000;201212160927,4229,30;201212160928,4229,9;201212160929,4220,2114;201212160930,4216,1500;201212160931,4216,3500;201212160933,4216,50660;201212160934,4220,99722;201212160935,4215,80613;201212160936,4219,4789;201212160938,4216,6;201212160939,4216,4600;201212160942,4218,50000;201212160944,4218,2360;201212160945,4218,4000;201212160946,4216,5510;201212160948,4217,145770;201212160949,4219,191632;201212160950,4217,100100;201212160951,4214,6600;201212160952,4219,136000;201212160953,4218,118900;201212160954,4219,6000;201212160955,4219,24596;201212160956,4217,79514;201212160957,4225,222710;201212160958,4236,52626;201212160959,4235,18520;201212161000,4237,42931;201212161001,4235,68549;201212161002,4239,224727;201212161003,4240,62992;201212161004,4239,50000;201212161005,4240,78000;201212161006,4240,868;201212161007,4240,53700;201212161008,4240,76367;201212161009,4240,56000;201212161010,4244,110600;201212161011,4245,238000;201212161012,4254,519449;201212161013,4273,533950;201212161014,4266,216084;201212161015,4257,21000;201212161016,4278,89234;201212161017,4277,129769;201212161018,4294,1176000;201212161019,4304,1156060;201212161020,4340,1268403;201212161021,4365,759547;201212161022,4378,2043835;201212161023,4379,2521309;201212161024,4377,519070;201212161025,4361,66650;201212161027,4365,10000;201212161028,4360,15000;201212161029,4350,39145;201212161030,4350,63300;201212161031,4349,58700;201212161032,4349,108800;201212161033,4350,1500;201212161034,4350,66000;201212161035,4346,65659;201212161036,4335,500;201212161037,4346,10000;201212161038,4334,123671;201212161039,4325,75957;201212161041,4327,16090;201212161042,4342,257376;201212161043,4350,21960;201212161044,4350,27923;201212161045,4350,115340;201212161046,4350,37837;201212161047,4350,17116;201212161048,4354,100000;201212161049,4357,236400;201212161050,4358,67000;201212161051,4360,3800;201212161053,4360,65000;201212161054,4359,266584;201212161055,4369,337520;201212161056,4378,526677;201212161057,4378,17814;201212161058,4378,150861;201212161059,4379,46000;201212161100,4378,65000;201212161101,4378,62000;201212161102,4378,10;201212161104,4378,249500;201212161105,4379,1042039;201212161106,4379,1260324;201212161107,4380,104500;201212161108,4380,6987;201212161110,4380,940;201212161111,4380,118000;201212161112,4380,32483;201212161113,4380,1000;201212161114,4380,10000;201212161115,4380,25000;201212161118,4380,1;201212161119,4380,170663;201212161122,4380,300000;201212161126,4380,4000;201212161129,4380,9888;201212161130,4380,50000;201212161138,4380,1000;201212161139,4380,20000;201212161157,4380,2000;201212161158,4380,100;201212161159,4380,50100';

var intraDayData=[];
   
var rows = data.split(';');
var cols;
var RowDate;

                        var iii;
                        for (iii = 0; iii < rows.length-1; iii++) {
                            cols = rows[iii].split(',');

                            RowDate = new Date(parseInt(cols[0].substring(0, 4)), parseInt(cols[0].substring(4, 6), 10) - 1, cols[0].substring(6, 8),
                                (parseInt(cols[0].substring(8, 10), 10) ) * 8,
                                parseInt(cols[0].substring(10), 10) * 8);

                            intraDayData.push([RowDate, parseInt(cols[1], 10)]);

                        }

   
                        $('#jqChart').jqChart({
                            legend: { visible: false },
                            border: { lineWidth: 0, padding: 0 },
                            axes: [{ type: 'linear', location: 'left', width: 60 }, { type: 'dateTime', location: 'bottom', skipEmptyDays: true, labels: { lineWidth: 1, visible: false }, majorTickMarks: { visible: false }, minorGridLines: { lineWidth: 1, strokeStyle: '#eeeeee'} }],
                            series: [{ type: 'line', markers: { size: 0},data:intraDayData }]
                        });



        });



I don't know if I do something wrong or I find some bug in JqChart


Best Regards
Pooya
Dragan
#2 Posted : Monday, December 17, 2012 3:37:48 AM(UTC)
Rank: Advanced Member

Groups: Administrators, DataVizJavaScript, jQueryChart, jQueryDV, MvcChart, Registered
Joined: 1/3/2011(UTC)
Posts: 483

Thanks: 0 times
Was thanked: 87 time(s) in 87 post(s)
The issue is in the calculations of the minor grid lines. For now you can avoid it with set 'interval : 1' in the minorGridLines options:

Code:
minorGridLines: { interval : 1, lineWidth: 1, strokeStyle: '#eeeeee' }


or you can use majorGridLines.
Best Regards,
Dragan Matek
jqChart Inc.
Pooya
#3 Posted : Tuesday, December 18, 2012 2:51:13 AM(UTC)
Rank: Member

Groups: Registered
Joined: 9/17/2011(UTC)
Posts: 23

Thanks: 2 times
Was thanked: 0 time(s) in 0 post(s)
Hi

Thanks for fast Reply and solution.

Best Regards
Pooya
Users browsing this topic
Guest (4)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

FlatEarth Theme by Jaben Cargman (Tiny Gecko)
Powered by YAF 1.9.4 | YAF © 2003-2010, Yet Another Forum.NET
This page was generated in 0.117 seconds.