6
 ChartElementData["PlotMarkers"]
 {"CenterMarkers", "ContrastMarkers", "EmptyMarkers", "FilledMarkers", 
  "HalfFilledMarkers", "SimpleContrastMarkers", "SimpleMarkers"}
?CenterMarkers
Information::notfound: Symbol CenterMarkers not found. >>

Where can I find information about all these and examples of application?

m_goldberg
  • 107,779
  • 16
  • 103
  • 257
Dimitris
  • 4,794
  • 22
  • 50
  • No information exists or the question has already been aswered somewhere? – Dimitris Sep 24 '15 at 10:44
  • 2
    Hmm. That appears to be my mistake. They're strings and not symbols. Specifically, they're named data that you can query, e.g. ChartElementData["CenterMarkers"] will produce a list containing the markers, etc. – rcollyer Sep 24 '15 at 13:40
  • @rcollyer. The Documentation Center is very thin on the subject of ChartElementData; there is not article ref/ChartElementData for that function. – m_goldberg Sep 24 '15 at 15:27
  • @m_goldberg you are correct, but it is my fault for suggesting it to him without giving a further example. – rcollyer Sep 24 '15 at 18:22

1 Answers1

11
m = 6;

data = Table[(m - n + 1) x, {n, 1, m}, {x, 0, 1, .1}];

cedPM = ChartElementData["PlotMarkers"]

{"CenterMarkers", "ContrastMarkers", "EmptyMarkers", "FilledMarkers", \
"HalfFilledMarkers", "SimpleContrastMarkers", "SimpleMarkers"}

Column[ListLinePlot[data, PlotMarkers -> ChartElementData[#], 
    PlotLabel -> #, PlotLegends -> Table[(m - n + 1) x, {n, m}]] & /@ 
  cedPM]

enter image description here

Bob Hanlon
  • 157,611
  • 7
  • 77
  • 198
  • 1
    A word of warning about incorrect implementation of the triangle plot markers in ChartElementData["PlotMarkers"]: http://mathematica.stackexchange.com/questions/95291/customizing-a-graph-dashing-plotmarkers-labeled/95298#comment258583_95298 – Alexey Popkov Sep 26 '15 at 09:51