Very simple issue

Created at 30 Aug 2024, 07:59
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
TU

tuuguu177

Joined 22.05.2024

Very simple issue
30 Aug 2024, 07:59


Hello, is it possible to make line and horizontal line behind price chart?

 

Thank you


@tuuguu177
Replies

PanagiotisCharalampous
01 Sep 2024, 05:01

Hi there,

No this is not possible at the moment.

Best regards,

Panagiotis


@PanagiotisCharalampous

tuuguu177
03 Sep 2024, 13:23

RE: Very simple issue

PanagiotisCharalampous said: 

Hi there,

No this is not possible at the moment.

Best regards,

Panagiotis

Hello

How to make line into transparent at coding?


@tuuguu177

tuuguu177
03 Sep 2024, 13:24

RE: Very simple issue

PanagiotisCharalampous said: 

Hi there,

No this is not possible at the moment.

Best regards,

Panagiotis

Hello

How to make line into transparent at coding?


@tuuguu177

PanagiotisCharalampous
04 Sep 2024, 05:13

RE: RE: Very simple issue

tuuguu177 said: 

PanagiotisCharalampous said: 

Hi there,

No this is not possible at the moment.

Best regards,

Panagiotis

Hello

How to make line into transparent at coding?

Hi there,

You need to set make your line's color transparent by setting the alpha to 0. See below

var color = Color.FromArgb(0,255,0,0); 

Best regards,

Panagiotis


@PanagiotisCharalampous

tuuguu177
04 Sep 2024, 12:06

RE: RE: RE: Very simple issue

PanagiotisCharalampous said: 

tuuguu177 said: 

PanagiotisCharalampous said: 

Hi there,

No this is not possible at the moment.

Best regards,

Panagiotis

Hello

How to make line into transparent at coding?

Hi there,

You need to set make your line's color transparent by setting the alpha to 0. See below

var color = Color.FromArgb(0,255,0,0); 

Best regards,

Panagiotis

Color.FromArgb(0,255,0,0)

Is 4th transparency value? I changed 4th value with 0 and 90. But there is not any change of line transparency


@tuuguu177

PanagiotisCharalampous
04 Sep 2024, 13:48

RE: RE: RE: RE: Very simple issue

tuuguu177 said: 

PanagiotisCharalampous said: 

tuuguu177 said: 

PanagiotisCharalampous said: 

Hi there,

No this is not possible at the moment.

Best regards,

Panagiotis

Hello

How to make line into transparent at coding?

Hi there,

You need to set make your line's color transparent by setting the alpha to 0. See below

var color = Color.FromArgb(0,255,0,0); 

Best regards,

Panagiotis

Color.FromArgb(0,255,0,0)

Is 4th transparency value? I changed 4th value with 0 and 90. But there is not any change of line transparency

the first one, which determines the alpha


@PanagiotisCharalampous

Shares4us
07 Sep 2024, 12:59

RE: RE: RE: RE: RE: Very simple issue

PanagiotisCharalampous said: 

tuuguu177 said: 

PanagiotisCharalampous said: 

tuuguu177 said: 

PanagiotisCharalampous said: 

Hi there,

No this is not possible at the moment.

Best regards,

Panagiotis

Hello

How to make line into transparent at coding?

Hi there,

You need to set make your line's color transparent by setting the alpha to 0. See below

var color = Color.FromArgb(0,255,0,0); 

Best regards,

Panagiotis

Color.FromArgb(0,255,0,0)

Is 4th transparency value? I changed 4th value with 0 and 90. But there is not any change of line transparency

the first one, which determines the alpha

use LineColor="00000000" // first 2 is transparancy


@Shares4us