2
$\begingroup$

I have a 30 different line plot I wanted to represent it with different color, How to carry this, I used ColorData function to generate different color, but it is not exceeding more than 15

colors = ColorData[63, "ColorList"][[;; 30]]; Show[Table[ListLogLinearPlot[Transpose[{xaxis[[i]], yaxis[[i]]}],Joined -> True, PlotStyle -> colors[[i]]]] 
$\endgroup$
1

1 Answer 1

2
$\begingroup$

Use

colors = ColorData[63] /@ Range[30] 

enter image description here

to get 30 different colors from color scheme 63.

CountDistinct @ colors 

30

$\endgroup$

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.