For example the TickMarkCount property. Modifying it, won't update the fill color of the shapes on the map.
A possible solution:
this.MyColorizer.Colorize(visualizationLayer.Items);
foreach (var shape in this.visualizationLayer.Items.OfType<MapShapeData>())
{
if (shape.IsSelected)
shape.UseSelectedFill();
else if (shape.IsHighlighted) shape.UseHighlightFill();
else shape.UseRegularFill();
};