Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8028943
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T00:17:03+00:00 2026-06-05T00:17:03+00:00

I’m trying to customize the appearance of an ASP Web Forms RadChart where the

  • 0

I’m trying to customize the appearance of an ASP Web Forms RadChart where the series have FillType = Solid while still allowing visibility of the lesser point values behind larger ones. What I really want is each series to have an outline placed on top of all the fills (basically the effect of having a ChartSeriesType.Line on top of a ChartSeriesType.Area).

I’ve experimented with setting LineAppearance.Shadow, color transparency, and combinations of those but it’s still too difficult to discern background series values.

Is there not a simple way to turn on an outline for each series when using a solid fill? OR to set the transparency of the background fill only, not the edges?

enter image description here

Note the transparency in the above image. I’m afraid allowing more transparency improves the visibility of background values but results in a horrible collection of pastel colors.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T00:17:05+00:00Added an answer on June 5, 2026 at 12:17 am

    I suggest you to go through telerik documentation page RadControls for ASP.NET AJAX Documentation -Styling Chart Elements and this nice example Creating RadChart Programmatically – more complex example.

    Code snippet:

    // Define chart and titleRadChart radChart = new RadChart();
    radChart.ChartTitle.TextBlock.Text = "My RadChart";
    radChart.ChartTitle.TextBlock.Appearance.TextProperties.Color = System.Drawing.Color.Blue;
    // Define chart series
    ChartSeries chartSeries = new ChartSeries();
    chartSeries.Appearance.LabelAppearance.Visible = false;
    chartSeries.Name = "GDP";
    chartSeries.Type = ChartSeriesType.Line;
    chartSeries.Appearance.LineSeriesAppearance.Color = System.Drawing.Color.BlueViolet;
    // Define the items in the series
    chartSeries.AddItem(1);
    chartSeries.AddItem(1.5);
    chartSeries.AddItem(2.0);
    chartSeries.AddItem(2.5);
    chartSeries.AddItem(3.5);
    // visually enhance the datapoints
    chartSeries.Appearance.PointMark.Dimensions.AutoSize = false;
    chartSeries.Appearance.PointMark.Dimensions.Width = 5;
    chartSeries.Appearance.PointMark.Dimensions.Height = 5;
    chartSeries.Appearance.PointMark.FillStyle.MainColor = System.Drawing.Color.Black;
    chartSeries.Appearance.PointMark.Visible = true;
    // Define chart series
    ChartSeries chartSeries2 = new ChartSeries();
    chartSeries2.Appearance.LabelAppearance.Visible = false;
    chartSeries2.Name = "GNP";
    chartSeries2.Type = ChartSeriesType.Line;
    chartSeries2.Appearance.LineSeriesAppearance.Color = System.Drawing.Color.Green;
    // Define the items in the series
    chartSeries2.AddItem(2);
    chartSeries2.AddItem(3);
    chartSeries2.AddItem(3.5);
    chartSeries2.AddItem(4);
    chartSeries2.AddItem(4.5);
    // visually enhance the data points
    chartSeries2.Appearance.PointMark.Dimensions.AutoSize = false;
    chartSeries2.Appearance.PointMark.Dimensions.Width = 5;
    chartSeries2.Appearance.PointMark.Dimensions.Height = 5;
    chartSeries2.Appearance.PointMark.FillStyle.MainColor = System.Drawing.Color.Black;
    chartSeries2.Appearance.PointMark.Visible = true;
    // set the plot area gradient background fill
    radChart.PlotArea.Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Gradient;
    radChart.PlotArea.Appearance.FillStyle.MainColor = System.Drawing.Color.FromArgb(65, 201, 254);
    radChart.PlotArea.Appearance.FillStyle.SecondColor = System.Drawing.Color.FromArgb(0, 107, 186);
    // Set text and line for X axis
    radChart.PlotArea.XAxis.AxisLabel.TextBlock.Text = "Years";
    radChart.PlotArea.XAxis.AxisLabel.TextBlock.Appearance.TextProperties.Color = System.Drawing.Color.Red;
    radChart.PlotArea.XAxis.Appearance.Width = 3;
    radChart.PlotArea.XAxis.Appearance.Color = System.Drawing.Color.Red;
    // Set text and line for Y axis
    radChart.PlotArea.YAxis.AxisLabel.TextBlock.Text = "%";
    radChart.PlotArea.YAxis.AxisLabel.TextBlock.Appearance.TextProperties.Color = System.Drawing.Color.Red;
    radChart.PlotArea.YAxis.Appearance.Width = 3;
    radChart.PlotArea.YAxis.Appearance.Color = System.Drawing.Color.Red;
    // Add the series to the chart, chart to page.radChart.Series.Add(chartSeries);radChart.Series.Add(chartSeries2);this.Page.Controls.Add(radChart)
    

    Hope this help..

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am trying to loop through a bunch of documents I have to put
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
this is what i have right now Drawing an RSS feed into the php,
I am trying to render a haml file in a javascript response like so:
I have this code to decode numeric html entities to the UTF8 equivalent character.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.