2

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]]]]
AsukaMinato
  • 9,758
  • 1
  • 14
  • 40
acoustics
  • 1,709
  • 9
  • 20
  • related https://mathematica.stackexchange.com/questions/66055/plotlegends-wont-generate-automatically-more-than-15-labels-in-v10 – AsukaMinato Feb 05 '20 at 12:12

1 Answers1

2

Use

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

enter image description here

to get 30 different colors from color scheme 63.

CountDistinct @ colors

30

kglr
  • 394,356
  • 18
  • 477
  • 896