kzahora 0 Report post Posted May 24, 2013 Is there any way to increase the font size on a map? We have tried setting the font size in both the SVG and in the PointLabel property but the map seems to always scale the size of the labels down: Chart1.AllSeries.PointLabels.Font = new System.Drawing.Font("Arial", 12, System.Drawing.FontStyle.Bold); and text transform="matrix(1 0 0 1 390 296.5596)" font-family="'MyriadPro-Regular'" font-size="12">30< do not seem to work. I've included an example of a map with the text barely visible, when in reality it should have a font-size of 12. Quote Share this post Link to post Share on other sites
ExequielA 1 Report post Posted May 27, 2013 Hello, In order the change the fontsize of the point labels, please refer to the code below: chart1.AllSeries.PointLabels.Font= new System.Drawing.Font("Microsoft Sans Serif", 14);chart1.AllSeries.PointLabels.Visible= true; I hope this helps. Quote Share this post Link to post Share on other sites
kzahora 0 Report post Posted May 28, 2013 That worked. Thank you very much! Quote Share this post Link to post Share on other sites