+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    jawn
    Guest

    Change all data markers (excel chart) to triangles in one command


    There must be some command which tells a new chart to randomize colors and
    symbols- this can look junky. I would llike to find a way to change all
    symbols simultaneouly to various shapes until I find what makes the chart
    most read-able.
    thankyou

  2. #2
    Jon Peltier
    Guest

    Re: Change all data markers (excel chart) to triangles in one command

    It's not a single command. You need to loop through the series in a chart
    and apply colors and symbols as you see fit. This procedure cycles among the
    marker shapes in a line or XY chart:

    Sub RotateMarkers()
    Dim srs As Series
    Dim NewMarker As Long

    Select Case ActiveChart.SeriesCollection(1).MarkerStyle
    Case xlMarkerStyleCircle
    NewMarker = xlMarkerStyleDiamond
    Case xlMarkerStyleDiamond
    NewMarker = xlMarkerStyleSquare
    Case xlMarkerStyleSquare
    NewMarker = xlMarkerStyleTriangle
    Case xlMarkerStyleTriangle
    NewMarker = xlMarkerStylePlus
    Case xlMarkerStylePlus
    NewMarker = xlMarkerStyleStar
    Case xlMarkerStyleStar
    NewMarker = xlMarkerStyleX
    Case xlMarkerStyleX
    NewMarker = xlMarkerStyleCircle
    Case Else
    NewMarker = xlMarkerStyleCircle
    End Select

    For Each srs In ActiveChart.SeriesCollection
    srs.MarkerStyle = NewMarker
    Next
    End Sub

    - Jon
    -------
    Jon Peltier, Microsoft Excel MVP
    Peltier Technical Services
    Tutorials and Custom Solutions
    http://PeltierTech.com/
    _______

    "jawn" <jawn@discussions.microsoft.com> wrote in message
    news:475E9A1F-E77E-4AB9-BD2F-52C32A27DF47@microsoft.com...
    >
    > There must be some command which tells a new chart to randomize colors and
    > symbols- this can look junky. I would llike to find a way to change all
    > symbols simultaneouly to various shapes until I find what makes the chart
    > most read-able.
    > thankyou




Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.2.0