How to get normal callouts with Web theme.
Posted: Wed Mar 08, 2017 9:55 pm
Hello,
I would like to get normal callouts with the web theme.
In the following pictures please ignore the colors which in web theme are horrendous. Please concentrate on just the Marks.
I would like the Marks callout style which is in this chart: But if I apply the Web theme I get this: I used this code to display the two types. (uncomment out the to change)
So, how do I get back to the normal style of marks callouts when using the web theme?
Also, is there a place that a customer can look to see the difference between(/changes done for each) the themes?
I would like to get normal callouts with the web theme.
In the following pictures please ignore the colors which in web theme are horrendous. Please concentrate on just the Marks.
I would like the Marks callout style which is in this chart: But if I apply the Web theme I get this: I used this code to display the two types. (uncomment out the
Code: Select all
// #define USE_WEB_THEME
Code: Select all
// #define USE_WEB_THEME
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TestCallouts
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
InitializeChart();
}
private void InitializeChart()
{
tChart1.Aspect.View3D = true;
Steema.TeeChart.Styles.Pie TheSeries = new Steema.TeeChart.Styles.Pie();
TheSeries.FillSampleValues(5);
#if (USE_WEB_THEME)
Steema.TeeChart.Themes.Theme theme;
theme = new Steema.TeeChart.Themes.WebTheme(tChart1.Chart);
theme.Apply();
#endif
TheSeries.Marks.Visible = true;
tChart1.Series.Add(TheSeries);
}
}
}
Also, is there a place that a customer can look to see the difference between(/changes done for each) the themes?