input : color(Green);
var : nday(0),week(0),TL(0);
nday = date - int(date/100)*100;
week = DayOfWeek(date);
if nday >= 8 and nday <= 14 and
week == 4 then
Condition1 = True;
Else
Condition1 = False;
if NextBarSdate != sDate and Condition1 == true Then
{
TL = TL_New(NextBarSdate,NextBarStime,0,NextBarSdate,NextBarStime,99999999);
TL_SetColor(TL,color);
}
----------------
위식의 세로선 굵기를 굵게할수 있을까요?
굵기를 지정할수 있어도 좋고 아님 그냥 굵게 해도 좋구요
감사합니다
답변 1
예스스탁
예스스탁 답변
2023-08-30 13:47:57
안녕하세요
예스스탁입니다.
굵기는 0~6사이 정수로 지정하시면 됩니다.
6이 가장 두껍습니다.
input : color(Green),굵기(1);
var : nday(0),week(0),TL(0);
nday = date - int(date/100)*100;
week = DayOfWeek(date);
if nday >= 8 and nday <= 14 and
week == 4 then
Condition1 = True;
Else
Condition1 = False;
if NextBarSdate != sDate and Condition1 == true Then
{
TL = TL_New(NextBarSdate,NextBarStime,0,NextBarSdate,NextBarStime,99999999);
TL_SetColor(TL,color);
TL_SetSize(TL,굵기);
}
즐거운 하루되세요
> 러블리 님이 쓴 글입니다.
> 제목 : 문의드립니다
> input : color(Green);
var : nday(0),week(0),TL(0);
nday = date - int(date/100)*100;
week = DayOfWeek(date);
if nday >= 8 and nday <= 14 and
week == 4 then
Condition1 = True;
Else
Condition1 = False;
if NextBarSdate != sDate and Condition1 == true Then
{
TL = TL_New(NextBarSdate,NextBarStime,0,NextBarSdate,NextBarStime,99999999);
TL_SetColor(TL,color);
}
----------------
위식의 세로선 굵기를 굵게할수 있을까요?
굵기를 지정할수 있어도 좋고 아님 그냥 굵게 해도 좋구요
감사합니다