314 |
Occasionally, the margins of the axes may not align perfectly with the view
With AxGraph1 .BeginUpdate() .ValueSize = 18 .Pad = 24 .ValueAxis.Format = "value format `0`" With .Series.Add("Hulunbuir{China}(263068),Abu Dhabi{United Arab Emirates}(97200),Jiuquan{China}(167996),Altamira{Brazil}(159891),Brasília{Brazil" & _ "}(5784),Mumbai{India}(603.4),Delhi{India}(1484),Chongqing{China}(82400),Hulunbuir{China}(263068),Sao Paulo{Brazil}(1522),Linfen{" & _ "China}(20527),Santiago{Chile}(641),Mexico City{Mexico}(1485),Belo Horizonte{Brazil}(313),Hangzhou{China}(16817),Nairobi{Kenya}(6" & _ "96),Berlin{Germany}(891.68),Montreal{Canada}(431.5),Cordoba{Argentina}(576),Manaus{Brazil}(11401),Astana{Kazakhstan}(810),Goiâni" & _ "a{Brazil}(741),Cali{Colombia}(564),Sao Paulo{Brazil}(1522),Goiania{Brazil}(781)") .Type = "Col" .Vertical = True End With .Sort = "0:D" .EndUpdate() End With |
313 |
"candlestick" explained, an [open,high,low,close] chart
|
312 |
"candlestick", a candlestick chart (also called Japanese candlestick chart or K-line) is a style of financial chart used to describe price movements of a security, derivative, or currency. While similar in appearance to a bar chart, each candleStick represents four important pieces of information for that day: open and close in the thick body, and high and low in the "candle wick". Being densely packed with information, it tends to represent trading patterns over short periods of time, often a few days or a few trading sessions. (data requires array of array of four-numbers, such as [[open, high, low and close]], supports vertical field, scrollable)
With AxGraph1 .BeginUpdate() .ValueSize = 18 With .CategoryAxis .Categories = "Date" .Format = "value mid 9 left 2" End With .Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv" .Series.Add("Open,High,Low,Close","msft").Type = "candlestick" .EndUpdate() End With |
311 |
"ohlc" explained, an [open,high,low,close] chart
|
310 |
"ohlc", an open-high-low-close chart (also OHLC) is a type of chart typically used to illustrate movements in the price of a financial instrument over time. Each vertical line on the chart shows the price range (the highest and lowest prices) over one unit of time, e.g., one day or one hour. Tick marks project from each side of the line indicating the opening price (e.g., for a daily bar chart this would be the starting price for that day) on the left, and the closing price for that time period on the right. The bars may be shown in different hues depending on whether prices rose or fell in that period. (data requires array of array of four-numbers, such as [[open, high, low and close]], supports vertical field, scrollable)
With AxGraph1 .BeginUpdate() .ValueSize = 18 With .CategoryAxis .Categories = "Date" .Format = "value mid 9 left 2" End With .Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv" .Series.Add("Open,High,Low,Close","msft").Type = "ohlc" .EndUpdate() End With |
309 |
"bubble", a bubble chart or bubble plot is a type of chart that displays three dimensions of data (a bubble chart is an extension of the scatter plot used to look at relationships between three numeric variables.). Each entity with its triplet (v1, v2, v3) of associated data is plotted as a disk that expresses two of the vi values through the disk's xy location and the third through its size. Bubble charts can facilitate the understanding of social, economical, medical, and other scientific relationships. (data requires array of array of three-numbers, such as [[x, y, size]], supports vertical field, non-scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 With .Series.Add("1 25 1,2 49 2,3 70 3,4 86 4,5 96 5,6 100 4,7 96 3,8 86 2,9 70 1,10 49 1,11 25 1","Bell<b>1") .Type = "bubble" .Misc(EXGRAPHLib.SerieMiscEnum.exScatterPlotSize) = 32 End With With .Series.Add("1 -25 1,2 -49 2,3 -70 3,4 -86 4,5 -96 5,6 -100 6,7 -96 5,8 -86 4,9 -70 3,10 -49 2,11 -25 1","Bell<b>2") .Type = "bubble" .Misc(EXGRAPHLib.SerieMiscEnum.exScatterPlotSize) = 32 End With .EndUpdate() End With |
308 |
"scatter", a scatter plot (also called a scatterplot, scatter graph, scatter chart, scattergram, or scatter diagram) is a type of plot or mathematical diagram using Cartesian coordinates to display values for typically two variables for a set of data. (data requires array of array of two-numbers, such as [[x, y]], supports vertical field, non-scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .Series.Add("1 25,2 49,3 70,4 86,5 96,6 100,7 96,8 86,9 70,10 49,11 25","Bell<b>1").Type = "scatter" .Series.Add("1 -25,2 -49,3 -70,4 -86,5 -96,6 -100,7 -96,8 -86,9 -70,10 -49,11 -25","Bell<b>2").Type = "scatter" .EndUpdate() End With |
307 |
"scatterline", curved
|
306 |
"scatterline", a scatter line chart is similar with "scatter" type, excepts that lines are shown between scatter plots. (data requires array of array of two-numbers, such as [[x, y]], supports vertical field, non-scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .Series.Add("1 25,2 49,3 70,4 86,5 96,6 100,7 96,8 86,9 70,10 49,11 25","Bell<b>1").Type = "scatterline" .Series.Add("1 -25,2 -49,3 -70,4 -86,5 -96,6 -100,7 -96,8 -86,9 -70,10 -49,11 -25","Bell<b>2").Type = "scatterline" .EndUpdate() End With |
305 |
"scatterarea", curved
|
304 |
"scatterarea", a scatter area chart is similar with "scatterLine" type, excepts that scatter plots zone is filled. (data requires array of array of two-numbers, such as [[x, y]], supports vertical field, non-scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .Series.Add("1 25,2 49,3 70,4 86,5 96,6 100,7 96,8 86,9 70,10 49,11 25","Bell<b>1").Type = "scatterarea" .Series.Add("1 -25,2 -49,3 -70,4 -86,5 -96,6 -100,7 -96,8 -86,9 -70,10 -49,11 -25","Bell<b>2").Type = "scatterarea" .EndUpdate() End With |
303 |
"polarscatter", shows the serie as non-connected data points (data requires array of array of two-numbers, such as [[angle, value]], non-scrollable)
With AxGraph1 .BeginUpdate() .set_Misc(EXGRAPHLib.MiscEnum.exRadialRotateLabels,False) With .CategoryAxis .Categories = "45,90,135,180,225,270,315,360" .MajorGridLines.Color = "lightgray" End With With .Series.Add("0 0,15 2,30 4,45 6,60 8,75 10,90 12,105 14,120 16,135 18,150 20,165 22,180 24,195 26,210 28,225 30,240 32,255 34,270 36,285 38," & _ "300 40,315 42,330 44,345 46,360 48,15 50,30 52,45 54,60 56,75 58,90 60","Spiral") .Type = "polarscatter" .Color = "red" End With .EndUpdate() End With |
302 |
"polarline", represents data points connected with straight line segments (data requires array of array of two-numbers, such as [[angle, value]], non-scrollable)
With AxGraph1 .BeginUpdate() .set_Misc(EXGRAPHLib.MiscEnum.exRadialRotateLabels,False) With .CategoryAxis .Categories = "45,90,135,180,225,270,315,360" .MajorGridLines.Color = "lightgray" End With With .Series.Add("0 0,15 2,30 4,45 6,60 8,75 10,90 12,105 14,120 16,135 18,150 20,165 22,180 24,195 26,210 28,225 30,240 32,255 34,270 36,285 38," & _ "300 40,315 42,330 44,345 46,360 48,15 50,30 52,45 54,60 56,75 58,90 60","Spiral") .Type = "polarLine" .Color = "red" End With .EndUpdate() End With |
301 |
"polararea", represents data points connected with straight line segments that enclose a filled area together with the chart pole (data requires array of array of two-numbers, such as [[angle, value]], non-scrollable)
With AxGraph1 .BeginUpdate() .set_Misc(EXGRAPHLib.MiscEnum.exRadialRotateLabels,False) With .CategoryAxis .Categories = "45,90,135,180,225,270,315,360" .MajorGridLines.Color = "lightgray" End With With .Series.Add("0 0,15 2,30 4,45 6,60 8,75 10,90 12,105 14,120 16,135 18,150 20,165 22,180 24,195 26,210 28,225 30,240 32,255 34,270 36,285 38," & _ "300 40,315 42,330 44,345 46,360 48,15 50,30 52,45 54,60 56,75 58,90 60","Spiral") .Type = "polarArea" .Color = "lime" End With .EndUpdate() End With |
300 |
"rangearea", a range chart displays sets of data points, each of which is defined by multiple values for the same category, and emphasizes the distance between the two values. The category labels are displayed on the category axis. The plain Range chart fills in the area between the top and the bottom value for each data point. (data requires array of array of two-numbers, such as [[from, to]], supports vertical field, scrollable)
With AxGraph1 .BeginUpdate() .AutoFit = True .ValueAxis.Format = "value + `°`" .Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17)," & _ " Dec(6 15)","Spain").Type = "rangearea" .Series.Add("Jan(3 13), Feb(4 15), Mar(8 17), Apr(11 20), May(15 25), Jun(19 29), Jul(21 31), Aug(21 31), Sep(17 27), Oct(12 22), Nov(7 16)," & _ " Dec(4 14)","Spain").Type = "rangearea" .EndUpdate() End With |
299 |
"rangecolumn", single
With AxGraph1 .BeginUpdate() .AutoFit = True .ValueAxis.Format = "value + `°`" .Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17)," & _ " Dec(6 15)","Spain").Type = "RangeColumn" .SeriesColors = "RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(" & _ "255,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)" .EndUpdate() End With |
298 |
"rangecolumn", a range column chart displays information as a range of data by plotting two Y-values (low and high) per data point. The vertical axis shows the values, and the horizontal axis shows the categories they belong to; in multiple-series range column charts, values are grouped by categories. (data requires array of array of two-numbers, such as [[from, to]], supports vertical field, scrollable)
With AxGraph1 .BeginUpdate() .AutoFit = True .ValueAxis.Format = "value + `°`" .Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17)," & _ " Dec(6 15)","Spain").Type = "RangeColumn" .Series.Add("Jan(3 13), Feb(4 15), Mar(8 17), Apr(11 20), May(15 25), Jun(19 29), Jul(21 31), Aug(21 31), Sep(17 27), Oct(12 22), Nov(7 16)," & _ " Dec(4 14)","Spain").Type = "RangeColumn" .EndUpdate() End With |
297 |
"pie", a pie chart (or a circle chart) is a circular statistical graphic which is divided into slices to illustrate numerical proportion. In a pie chart, the arc length of each slice (and consequently its central angle and area) is proportional to the quantity it represents. While it is named for its resemblance to a pie which has been sliced, there are variations on the way it can be presented. (data requires array of numbers, non-scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .set_Misc(EXGRAPHLib.MiscEnum.exPaddingInsidePie,2) With .Series .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide").Type = "pie" .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native").Type = "pie" End With .Legend.Visible = True .EndUpdate() End With |
296 |
"waterfall", a waterfall chart is a form of data visualization that helps in understanding the cumulative effect of sequentially introduced positive or negative values. These intermediate values can either be time based or category based. The waterfall chart is also known as a flying bricks chart or Mario chart due to the apparent suspension of columns (bricks) in mid-air. Often in finance, it will be referred to as a bridge. (data requires array of numbers, supports vertical field, scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide").Type = "waterfall" .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native").Type = "waterfall" End With .Legend.Visible = True .EndUpdate() End With |
295 |
"radarcolumn", stacked
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series With .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide") .Type = "radarcolumn" .Stack = "group" End With With .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native") .Type = "radarcolumn" .Stack = "group" End With End With .Legend.Visible = True .EndUpdate() End With |
294 |
"radarcolumn", displays data in radial columns starting from one center point. The circle is divided into equal portions depending on the number of columns and each column group occupies one portion (similar with "radarArea" type, data requires array of numbers, non-scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide").Type = "radarcolumn" .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native").Type = "radarcolumn" End With .Legend.Visible = True .EndUpdate() End With |
293 |
"radarline", stacked
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series With .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide") .Type = "radarline" .Stack = "group" End With With .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native") .Type = "radarline" .Stack = "group" End With End With .Legend.Visible = True .EndUpdate() End With |
292 |
"radarline" (data requires array of numbers, non-scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide").Type = "radarline" .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native").Type = "radarline" End With .Legend.Visible = True .EndUpdate() End With |
291 |
"radararea", stacked
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series With .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide") .Type = "radararea" .Stack = "group" End With With .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native") .Type = "radararea" .Stack = "group" End With End With .Legend.Visible = True .EndUpdate() End With |
290 |
"radararea", a radar chart is a graphical method of displaying multivariate data in the form of a two-dimensional chart of three or more quantitative variables represented on axes starting from the same point. The relative position and angle of the axes is typically uninformative, but various heuristics, such as algorithms that plot data as the maximal total area, can be applied to sort the variables (axes) into relative positions that reveal distinct correlations, trade-offs, and a multitude of other comparative measures. (data requires array of numbers, non-scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide").Type = "radararea" .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native").Type = "radararea" End With .Legend.Visible = True .EndUpdate() End With |
289 |
"column", single
With AxGraph1 .BeginUpdate() .AutoFit = True .Series.Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide").Type = "column" .EndUpdate() End With |
288 |
"column", stacked
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series With .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide") .Type = "column" .Stack = "group" End With With .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native") .Type = "column" .Stack = "group" End With End With .Legend.Visible = True .EndUpdate() End With |
287 |
"column", a column chart or column graph is a chart or graph that presents categorical data with rectangular columns with heights proportional to the values that they represent. A horizontal column chart is called a bar chart. (data requires array of numbers, supports vertical field, scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide").Type = "column" .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native").Type = "column" End With .Legend.Visible = True .EndUpdate() End With |
286 |
"line", stacked
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series With .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide") .Type = "line" .Stack = "group" End With With .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native") .Type = "line" .Stack = "group" End With End With .Legend.Visible = True .EndUpdate() End With |
285 |
"line", a line chart or line graph, also known as curve chart is a type of chart which displays information as a series of data points called 'markers' connected by straight line segments. It is a basic type of chart common in many fields. It is similar to a scatter plot except that the measurement points are ordered (typically by their x-axis value) and joined with straight line segments. A line chart is often used to visualize a trend in data over intervals of time - a time series - thus the line is often drawn chronologically. In these cases they are known as run charts. (data requires array of numbers, supports vertical field, scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide").Type = "line" .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native").Type = "line" End With .Legend.Visible = True .EndUpdate() End With |
284 |
"area", stacked
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series With .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide") .Type = "area" .Stack = "group" End With With .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native") .Type = "area" .Stack = "group" End With End With .Legend.Visible = True .EndUpdate() End With |
283 |
"area", an area chart or area graph displays graphically quantitative data. It is based on the line chart. The area between axis and line are commonly emphasized with colors, textures and hatchings. Commonly one compares two or more quantities with an area chart. (data requires array of numbers, supports vertical field, scrollable)
With AxGraph1 .BeginUpdate() .Pad = 18 .AutoFit = True With .Series .Add("Chinese(14.1),Spanish(6.7),English(4.9),Hindi(4.2),Arabic(4.1),Bengali(3.3),Portuguese(2.9),Russian(2.8),Japanese(1.7),Lahnda(1" & _ ".6)","Worldwide").Type = "area" .Add("Chinese(13.2),Spanish(6.6),English(4.8),Hindi(4.1),Arabic(4.0),Bengali(3.2),Portuguese(2.8),Russian(2.7),Japanese(1.6),Lahnda(1" & _ ".5)","Native").Type = "area" End With .Legend.Visible = True .EndUpdate() End With |
282 |
Defines the color to show the frame around the pies
With AxGraph1 .BeginUpdate() .AutoFit = True With .Series.Add("1920(1.8),1945(2.3),1970(13.7),1995(5.7),2020(7.8)","Population") .Type = "Pie" .ShowValue = EXGRAPHLib.ShowValueEnum.exValue Or EXGRAPHLib.ShowValueEnum.exLine Or EXGRAPHLib.ShowValueEnum.exPoint .Misc(EXGRAPHLib.SerieMiscEnum.exPieFrameColor) = 255 .Misc(EXGRAPHLib.SerieMiscEnum.exLineSize) = 4 End With .EndUpdate() End With |
281 |
Defines the width of the line to show the serie
With AxGraph1 .BeginUpdate() .AutoFit = True With .Series.Add("1920(1.8),1945(2.3),1970(13.7),1995(5.7),2020(7.8)","Population") .Type = "Line" .Misc(EXGRAPHLib.SerieMiscEnum.exLineSize) = 4 End With .EndUpdate() End With |
280 |
Changes the spline's tension and alpha curves
With AxGraph1 .BeginUpdate() .AutoFit = True With .Series.Add("1920(1.8),1945(2.3),1970(13.7),1995(5.7),2020(7.8)","Population") .Type = "Line" .Style = EXGRAPHLib.SerieStyleEnum.exSpline .Misc(EXGRAPHLib.SerieMiscEnum.exSplineTension) = 0 .Misc(EXGRAPHLib.SerieMiscEnum.exSplineAlpha) = 1 End With .EndUpdate() End With |
279 |
Enables or disables the presentation of hollow representations. This indicates instances where the closing price exceeds the opening price, resulting in candlesticks characterized by unfilled bodies
With AxGraph1 .BeginUpdate() .ValueSize = 6 .Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv" With .Series.Add() .Name = "msft" .Data = "Open,High,Low,Close" .Type = "candle" .Misc(EXGRAPHLib.SerieMiscEnum.exCandleAllowHollow) = False End With .EndUpdate() End With |
278 |
Defines the size to display the candle stick
|
277 |
Defines the radius to show the plot on scatter-type charts
With AxGraph1 .BeginUpdate() With .Series.Add("11 22 33,44 55 66,77 88 99,12 34 56,78 90 23") .Type = "bubble" .Misc(EXGRAPHLib.SerieMiscEnum.exScatterPlotSize) = 64 End With With .Series.Add("21 32 43,54 65 76,87 98 09,45 67 89,90 23 45") .Type = "bubble" .Misc(EXGRAPHLib.SerieMiscEnum.exScatterPlotSize) = 64 End With With .Cursor .Visible = True .ShowCursorXLine = False End With .EndUpdate() End With |
276 |
Customizes the captions to be shown within the legend
With AxGraph1 .BeginUpdate() .AutoFit = True .ValueAxis.AsPercent = True .Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").LegendFormat = "trim(label replace `Ocean` with ``)" .Legend.Visible = True .EndUpdate() End With |
275 |
Stacked (data points within a series are stacked on top of each other rather than plotted side by side)
With AxGraph1 .BeginUpdate() .AutoFit = True .CategoryAxis.MajorGridLines.Color = "lightgray" With .Series .Add("Electronics(350),Clothing(200),Books(150)",2001).Stack = "A" .Add("Electronics(500),Clothing(150),Books(180)",2002).Stack = "A" End With .Legend.Visible = True .EndUpdate() End With |
274 |
Draws a curved line
With AxGraph1 .BeginUpdate() .AutoFit = True With .Series.Add("1920(1.8),1945(2.3),1970(3.7),1995(5.7),2020(7.8)","Population") .Type = "Line" .Style = EXGRAPHLib.SerieStyleEnum.exSpline .Misc(EXGRAPHLib.SerieMiscEnum.exLineSize) = 2 End With .EndUpdate() End With |
273 |
Customizes the values to display on the chart (showValue property includes the exValue)
With AxGraph1 .BeginUpdate() .AutoFit = True .CategoryAxis.Visible = False With .Series.Add("Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)") .ShowValue = EXGRAPHLib.ShowValueEnum.exValue Or EXGRAPHLib.ShowValueEnum.exLine Or EXGRAPHLib.ShowValueEnum.exPoint .ValueFormat = "category + `<br><b>` + (percent format ``) + `%`" End With .EndUpdate() End With |
272 |
Shows or hides the serie's value-points, value-lines and values
With AxGraph1 .BeginUpdate() .AutoFit = True .Series.Add("Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)").ShowValue = EXGRAPHLib.ShowValueEnum.exValue Or EXGRAPHLib.ShowValueEnum.exLine Or EXGRAPHLib.ShowValueEnum.exPoint .EndUpdate() End With |
271 |
Shows or hides the serie
With AxGraph1 .BeginUpdate() .AutoFit = True With .Series With .Add("Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)") .Visible = False .Vertical = True .Name = 2001 End With .Add("Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)").Name = 2002 End With .Legend.Visible = True .EndUpdate() End With |
270 |
Show bars graph (the serie is showing the data vertically or horizontally)
With AxGraph1 .BeginUpdate() .AutoFit = True .VisualAppearance.Add(1,"gBFLBCJwBAEHhEJAAEhABUQDg6AADACAxRDAMgBQKAAzAJBIYhiGgcYCgMZBSDeCYXABCEYRXBIZQ7BKNIxjSJwFiCCQwSDKEjyCKsGRHF6MI6gOYpCgOIYjRJNIASV" & _ "AceAAHCUZrjSgobAiCYlTZCIBQS5oOBIACmabiegZLgmQInUrMEggVDgJSPuTWNQUdYdJQTHIZBpEWyLKjkNQwWrCNr3DTUEyNDauIDpCKLCpGZYYVRPOAgAKldxhGCa" & _ "JokGkgc4HHyrcCwfDAMraCQQWAAF62Jb1JyrSSBchnOwpDpuCaVQLXUB5RRNQyZTiyIrtS5AAqnNJzW5cE46Li0B5QAC8QA1S7NPo/HaZT5kGB7ZDddzuADfcLlfD5Bx" & _ "EDCUhQmEPAbl6K4hlKQ5snwNwtleDxpBeMRIHmd4+A8R4/BuRZvEABQDEmDJoHUOQZEYMgVjQSIEE0fwRjCWQJAoEIXHWQxCAGBBggAbpemOCJaDaRowkQKwfgSEJCBQ" & _ "DAGnCWAsDYTJTLSBwOlgfghggIgohYIA3A0Iw8GcCxCigZAsguB4hBwQ4HAyZAMjMJhJjIPBdA0SZxkAOoPEOIhMGEDYJHGSB0gmIg5CYSAokgAZggME4DCkAhACbIhg" & _ "ioIwImQDhXCOCQRHgNwogcIJyGCGImBGMAyAqYxJCISINAcAJcC0JxGmCbIiByQ5Zk4dYdCWORqFgJJGACYIkB0A5pn6AYgAmcY8DwHRDlCOg3CaZIKCwfgSgOOgUDwK" & _ "RHFCfoUiWKRaF4eQACWMhUGEDoKHGWBAigag6gqJIpCmYJogMExDEqLA0ioah6giKAdkQGpOjWLQrGobjfEYMJwioHhEDqfpBjACohmAQoxGwewakiMpsisNBCCqbALE" & _ "AQ40i0KtjCYRhQnSLQekQWxul2NwKlGaBEjgbg7gqZI5m4a4kEQK4tkuMBFjuLprFiDgnAYYJ8jAHxEHuXp5j4L4rnafI/m+PAGnoLBvgwEBH5Aa5Ih8GhEBKUIABKMJ" & _ "sEMDwtAecQnBSRYxFwXwakYcZBCSNZDnGcQrCGlIigQagQkscgIEyShyjyKI3CARI8j8MZMDMLJXDSTZEjKYwqk6BJMnMPI8goMYwEQLoIEEOxElGNBdB8SpSHSTQjE6" & _ "UZLj0FxRBONQ9E6cgpEaUQYj0IYFA0bxdlcNZilwfwTEiYRUDwHZDkCSxoAyNhQnMYgTHWYp4gcFB3C2Uxzl0N4IoQBvAjEwAQIApRfDvH2PELgOhEhUDwI0GgxBIgED" & _ "QEMRQ4hPgGBKBgEgSBTjIHkHwS4KQ8siEQJIMIkQxCvBwCoS4hAQCkBuIYcIuRrBzE6BMK4Eg7D0HOEAewIgDilFwPwE4mBODvDUCoew9BsiMCyJYQg+BlAiEwMQNArx" & _ "wCKH6PARYLR6hSCuFYMYFRSgZBMCwA45gfiFHSAocomB5AnCmGcH4tAkgNFGHkFQNAGAEHAN4GQERhgQF0GsDIxg/iTHIJwMw4RVA2EMCEOA9APgGE+JgNATBHE4F6Ac" & _ "UAZwuAYAAAgBBAQ==") With .Series With .Add("Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)") .Color = 16777216 .Vertical = True End With .Add("Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)").Color = 16777216 End With .SeriesColors = "red,RGB(255,128,0)" .EndUpdate() End With |
269 |
Defines the name of the chart serie which is visible in the legend
With AxGraph1 .BeginUpdate() .AutoFit = True With .ValueAxis .AsPercent = True .Format = "(value * 100 format `0`) + `%`" End With With .Series .Add("Asian(10),Black(13),Hispanic(15),White(60),Other(7)","<fgcolor blue>Population") .Add("Asian(65),Black(69),Hispanic(67),White(70),Other(68)").Name = "<fgcolor teal>Height" End With .Legend.Visible = True .EndUpdate() End With |
268 |
Defines the visual appearance of the serie using EBN colors (method 3,mixt)
With AxGraph1 .BeginUpdate() .AutoFit = True .VisualAppearance.Add(1,"gBFLBCJwBAEHhEJAAEhABVoDg6AADACAxRDAMgBQKAAzAJBIYhiGgcYCgMZBSDeCYXABCEYRXBIZQ7BKNIxjSJwFgmEgADIOAzyPAsVwSGobRpkEaIMiONoYR5Ac4yF" & _ "AcQxHE6TZRGeQRRiGModT5HFIxXIsBgRECEQChFzQcCQAJUVZFdAyVQlDRCGSpJrkEC4cBCCZPTzUNR1LS9WS1DoaRJoG4ZHDUMJyS7dcjyHINGwxMinJrwKA6bi6BAw" & _ "YYAEwUPAYcT9QaRZznOQaLhiQIdVxDNbURgWKgVBK/AiqCA7Bq2VpYZZmFB5VJ9P5LPiEcE+fAdTQHUS0dItPR7OiacJ4TpdF48BhVdY7UCEdoADYtYxCP6qSxiFDUDA" & _ "/CsF5KloAAXm4VBfEuKJUFuZxSi6DouAY34NDWdItg2HgTjaWZHDuVpPAae4DkQGRwjyXBvlcE47iMdoelQDYyHcHJkGGFIAEAARAGkGJHEGVByBkVBUCSFhEgQIQ2BM" & _ "RpDGQJAoHuEIXDUCAGBGAYBHsc4NhMNJOCqCJCDoKIKiKGIuC6CxjAiMgyguYw4iSXg2g2MZoEcEJJjGLA4CiBwwnSJQdEOcogHcEBKjGZBDCuB4xBSMQfEQcpUgAEoL" & _ "gICBMC6SBBDiPghkUEwEgkFJMEILBVCyR4RDiGQckcIY8DYCwJnGQA6hAJApBIRoSCSKQyE6FAlCkUhWhYJYpHIXoYCYIwcg0FZHiCeA0hqJpJjocIQmQWQeEmEpklkP" & _ "hRhSZRZF4WYWmWWR+GEFRoCoEoGBmQpQiiAwTgMIh0G4DpokmToPh2KQpmaFYfCmCZ8jcH4EnITBYA+RpQkQLg3A0Iw8iMIAHgGQA3AsSZxjwPApkcYS5h4BAijQegRA" & _ "sCRAjQH5EhKXIBBKS4pGSPQhgUAo4HUEtHhAPQxgqUoMmNjRQhAHA7G6I42CUM4HmEKA7jILIrDKTo0C0KxSlaNglhKXB/BMSBxFwUw6k4c4im2QZujwIJtCySYSGyFQ" & _ "YEOKwuk2M5tBEHpTjUbR7GQTgjgUUJym+QoyAwJwiDsSAxDQNJEi8fBXBePpxiGXA8AyMgbjMI5MHIXIenaRQvhwYp8BOMpskMM5PnMLQHAyQ4xAyIw4kWL4sGZDoxmi" & _ "GwxkKLpxlQPQLi8TQaniUgziwap+BMbwRBsBJBjIO48hcHIHEGMAyAqbBbB6SZVjKLQnDuNptlsfBvA2Qx4iyKwM4GR6BBBMDAQwxQIDkA8BQQYoA+iqGSEUNgmxKhKD" & _ "KLwVojQ3AGACBAFIFxCAgFIE8RgogUgcBiAsUY8BJAYCaLMPw/xgDwD2F8BYwxtBcCeBcNoWxOBwFIGEZgRgagGCcA0cYJwajOCiFwf4BRhAID4DARYxAEhcCgJkYwdQ" & _ "eB/CwCoeowhcgqBoAwAYWAxAVEiOIdAagkCLGCLmAoBwMB4DoEsRgYRwgyBkIcUg4BmAfZKEgQQUBGhCeGDYBAhQUDaBGBUAYeBHBVAcCIJ4KARCSCGGgbwcQjgaA4Gk" & _ "foxgfjkDUV8GAswLCDE8AIBwtAjAAAQAggIA=") With .Series .Add("Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)").Color = 16777216 .Add("Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)").Color = 16777216 End With .SeriesColors = "red,RGB(255,128,0)" .EndUpdate() End With |
267 |
Defines the color to show the serie (method 2)
With AxGraph1 .BeginUpdate() .AutoFit = True With .Series .Add("Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)") .Add("Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)") End With .SeriesColors = "red,RGB(255,128,0)" .EndUpdate() End With |
266 |
Defines the color to show the serie (method 1)
With AxGraph1 .BeginUpdate() .AutoFit = True With .Series .Add("Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)").Color = "red" .Add("Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)").Color = 33023 End With .EndUpdate() End With |
265 |
Changes the position of the serie
With AxGraph1 .BeginUpdate() .AutoFit = True With .Series .Add("Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)") .Add("Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)") End With .Series.Item(1).Position = 0 .EndUpdate() End With |
264 |
Referencing a series by its key
With AxGraph1 .BeginUpdate() .AutoFit = True With .Series .Add("Facebook(125),Google(94),Twitter(38),LinkedIn(172),Instagram(53),Pinterest(187),Snapchat(104),WhatsApp(19)").Key = "1st" .Add("Facebook(176),Google(81),Twitter(47),LinkedIn(159),Instagram(62),Pinterest(193),Snapchat(118),WhatsApp(25)").Key = "2nd" End With .Series.Item("2nd").Visible = False .EndUpdate() End With |
263 |
Removes the serie (click to remove the serie)
' Click event - Occurs when the user presses and then releases the left mouse button over the control. Private Sub AxGraph1_ClickEvent(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AxGraph1.ClickEvent With AxGraph1 .Series.Remove(0) End With End Sub With AxGraph1 .BeginUpdate() .AutoFit = True .Series.Add("Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)") .EndUpdate() End With |
262 |
Clears the series (click to remove all series)
' Click event - Occurs when the user presses and then releases the left mouse button over the control. Private Sub AxGraph1_ClickEvent(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AxGraph1.ClickEvent With AxGraph1 .Series.Clear() End With End Sub With AxGraph1 .BeginUpdate() .AutoFit = True .Series.Add("Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)") .EndUpdate() End With |
261 |
Add multiple series (mixt)
With AxGraph1 .BeginUpdate() .AutoFit = True .set_Misc(EXGRAPHLib.MiscEnum.exBaseMajorUnits,"1,5") .CategoryAxis.MajorGridLines.Color = "lightgray" With .ValueAxes With .Add("g+a") .End = 0.66 .MajorGridLines.Step = 1000 End With With .Add("p") .Start = 0.66 .MajorGridLines.Step = 1000 End With End With With .Series With .Add("UnitedStates(22.7),China(17.6),Japan(5.0),Germany(4.4),India(3.2),UnitedKingdom(3.1),France(3.0),Brazil(2.5)","GDP") .Axis = "g+a" .Stack = "g+a" End With .Add("UnitedStates(331),China(1400),Japan(126),Germany(83),India(1400),UnitedKingdom(68),France(67),Brazil(213)","Population").Axis = "p" With .Add("UnitedStates(9.8),China(9.6),Japan(0.377),Germany(0.357),India(3.3),UnitedKingdom(0.610),France(0.695),Brazil(8.5)","Area") .Axis = "g+a" .Stack = "g+a" End With End With .Legend.Visible = True .EndUpdate() End With |
260 |
Add multiple series (same value-axis, stacked)
With AxGraph1 .BeginUpdate() .AutoFit = True .CategoryAxis.MajorGridLines.Color = "lightgray" With .Series .Add("UnitedStates(22.7),China(17.6),Japan(5.0),Germany(4.4),India(3.2),UnitedKingdom(3.1),France(3.0),Brazil(2.5)","GDP").Stack = "g+a" .Add("UnitedStates(331),China(1400),Japan(126),Germany(83),India(1400),UnitedKingdom(68),France(67),Brazil(213)","Population") .Add("UnitedStates(9.8),China(9.6),Japan(0.377),Germany(0.357),India(3.3),UnitedKingdom(0.610),France(0.695),Brazil(8.5)","Area").Stack = "g+a" End With .Legend.Visible = True .EndUpdate() End With |
259 |
Add multiple series (same value-axis, all stacked)
With AxGraph1 .BeginUpdate() .AutoFit = True .CategoryAxis.MajorGridLines.Color = "lightgray" With .Series .Add("UnitedStates(22.7),China(17.6),Japan(5.0),Germany(4.4),India(3.2),UnitedKingdom(3.1),France(3.0),Brazil(2.5)","GDP").Stack = "all" .Add("UnitedStates(331),China(1400),Japan(126),Germany(83),India(1400),UnitedKingdom(68),France(67),Brazil(213)","Population").Stack = "all" .Add("UnitedStates(9.8),China(9.6),Japan(0.377),Germany(0.357),India(3.3),UnitedKingdom(0.610),France(0.695),Brazil(8.5)","Area").Stack = "all" End With .Legend.Visible = True .EndUpdate() End With |
258 |
Add multiple series (same value-axis)
With AxGraph1 .BeginUpdate() .AutoFit = True .CategoryAxis.MajorGridLines.Color = "lightgray" With .Series .Add("UnitedStates(22.7),China(17.6),Japan(5.0),Germany(4.4),India(3.2),UnitedKingdom(3.1),France(3.0),Brazil(2.5)","GDP") .Add("UnitedStates(331),China(1400),Japan(126),Germany(83),India(1400),UnitedKingdom(68),France(67),Brazil(213)","Population") .Add("UnitedStates(9.8),China(9.6),Japan(0.377),Germany(0.357),India(3.3),UnitedKingdom(0.610),France(0.695),Brazil(8.5)","Area") End With .Legend.Visible = True .EndUpdate() End With |
257 |
Add multiple series (different value axes)
With AxGraph1 .BeginUpdate() .AutoFit = True .CategoryAxis.MajorGridLines.Color = "lightgray" With .ValueAxes With .Add("g") .End = 0.33 .Visible = False .MajorGridLines.Step = 1000 End With With .Add("p") .Start = 0.33 .End = 0.66 .Visible = False .MajorGridLines.Step = 1000 End With With .Add("a") .Start = 0.66 .Visible = False .MajorGridLines.Step = 1000 End With End With With .Series .Add("UnitedStates(22.7),China(17.6),Japan(5.0),Germany(4.4),India(3.2),UnitedKingdom(3.1),France(3.0),Brazil(2.5)","GDP").Axis = "g" .Add("UnitedStates(331),China(1400),Japan(126),Germany(83),India(1400),UnitedKingdom(68),France(67),Brazil(213)","Population").Axis = "p" .Add("UnitedStates(9.8),China(9.6),Japan(0.377),Germany(0.357),India(3.3),UnitedKingdom(0.610),France(0.695),Brazil(8.5)","Area").Axis = "a" End With .Legend.Visible = True .EndUpdate() End With |
256 |
Display the values over the columns
With AxGraph1 .BeginUpdate() .AutoFit = True .ValuePoint = "0,,,,,,0" .Series.Add("Pacific(16525), Atlantic(10646), Indian(7056), Southern(2033), Arctic(1406)").ShowValue = EXGRAPHLib.ShowValueEnum.exValue Or EXGRAPHLib.ShowValueEnum.exLine Or EXGRAPHLib.ShowValueEnum.exPoint .SeriesColors = "RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(" & _ "255,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)" .EndUpdate() End With |
255 |
Defines the pad, distance between value-label and its frame (the number indicated by the ValuePoint property in the 11-th position)
|
254 |
Defines the size of the frame around the value-label (the number indicated by the ValuePoint property in the 10-th position)
|
253 |
Defines the color of the frame around the value-label (the color indicated by the ValuePoint property in the 9-th position)
|
252 |
Defines the background color of the value-label (the color indicated by the ValuePoint property in the 8-th position)
|
251 |
Defines the length of the line (the number indicated by the ValuePoint property in the 7-th position)
|
250 |
Defines the size of the line from the value point to its label (the number indicated by the ValuePoint property in the 6-th position)
|
249 |
Defines the color of the line from the value point to its label (the color indicated by the ValuePoint property in the 5-th position)
|
248 |
Defines the size of the frame around the value point (the number indicated by the ValuePoint property in the 4-th position)
|
247 |
Defines the color of the frame around the value point (the color indicated by the ValuePoint property in the 3-rd position)
|
246 |
Defines the color of the value point (the color indicated by the ValuePoint property in the 2-nd position)
|
245 |
Defines the size of the value point (the number indicated by the ValuePoint property in the first position)
|
244 |
Disables resizing the chart by drag and drop (resize the chart's value by clicking and dragging with the middle mouse button)
With AxGraph1 .BeginUpdate() .ValueSize = 64 .AllowValueResize = False .Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)") .Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)") .Cursor.Visible = True .EndUpdate() End With |
243 |
Scrolls programatically the chart
|
242 |
Disables scrolling the chart by clicking and dragging the chart
With AxGraph1 .BeginUpdate() .ValueSize = 8 .AllowScroll = False .Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv" .ValueAxis.Format = "value format ``" With .Series.Add() .Name = "msft" .Data = "Open,High,Low,Close" .Type = "candle" End With .EndUpdate() End With |
241 |
Disables the scroll bars
With AxGraph1 .BeginUpdate() .ValueSize = 8 .Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv" .ValueAxis.Format = "value format ``" With .Series.Add() .Name = "msft" .Data = "Open,High,Low,Close" .Type = "candle" End With .ScrollBars = EXGRAPHLib.ScrollBarsEnum.exNoScroll .AllowScroll = False .EndUpdate() End With |
240 |
Hides the scroll bars
|
239 |
The maximum value of the axis does not fit the view. Is there anything I can do to ensure that it fits the view
With AxGraph1 .BeginUpdate() .AutoFit = True .Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)") .Pad = 24 .EndUpdate() End With |
238 |
Customizes the "no or invalid data" message
With AxGraph1 .Invalid = "<fgcolor red>no or invalid data" .FormatText = EXGRAPHLib.DrawTextFormatEnum.exTextAlignBottom Or EXGRAPHLib.DrawTextFormatEnum.exTextAlignCenter End With |
237 |
Sorts descending the serie
With AxGraph1 .BeginUpdate() .AutoFit = True .Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").Vertical = True .Sort = "0:D" .EndUpdate() End With |
236 |
Sorts ascending the serie
With AxGraph1 .BeginUpdate() .AutoFit = True .Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").Vertical = True .Sort = "0" .EndUpdate() End With |
235 |
I changed the ValueSize property but it appears that it has no effect
With AxGraph1 .BeginUpdate() .ValueSize = 32 .AutoFit = False .CategoryAxis.Format = "value replace `Ocean` with ``" .Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").Type = "Column" .EndUpdate() End With |
234 |
Defines the size to show a column or a bar within the chart
|
233 |
Customizes the tooltip (shown while the cursor hovers value-points of the chart)
With AxGraph1 .BeginUpdate() .set_Background(EXGRAPHLib.BackgroundPartEnum.exToolTipBackColor,1) .set_Background(EXGRAPHLib.BackgroundPartEnum.exToolTipForeColor,16777215) .ToolTipFormat = "`<b>` + category + `</b><br>Value: ` + (value format ``)" .AutoFit = True .Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").ShowValue = EXGRAPHLib.ShowValueEnum.exPoint .EndUpdate() End With |
232 |
Resizes the elements of the series to fit the control's content
With AxGraph1 .BeginUpdate() .Series.Add("1,2,3,4") .AutoFit = True .EndUpdate() End With |
231 |
Defines the preset color scheme for the chart's series, encompassing both regular and reduced values
With AxGraph1 .BeginUpdate() .ValueSize = 8 .Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv" .ValueAxis.Format = "value format ``" With .Series.Add() .Name = "msft" .Data = "Open,High,Low,Close" .Type = "candle" End With .SeriesColors = "gray" .SeriesColorsDecrease = "black" .EndUpdate() End With |
230 |
Defines the default colors for the chart's series
With AxGraph1 .BeginUpdate() .VisualAppearance.Add(1,"gBFLBCJwBAEHhEJAAEhABUQDg6AADACAxRDAMgBQKAAzAJBIYhiGgcYCgMZBSDeCYXABCEYRXBIZQ7BKNIxjSJwFiCCQwSDKEjyCKsGRHF6MI6gOYpCgOIYjRJNIASV" & _ "AceAAHCUZrjSgobAiCYlTZCIBQS5oOBIACmabiegZLgmQInUrMEggVDgJSPuTWNQUdYdJQTHIZBpEWyLKjkNQwWrCNr3DTUEyNDauIDpCKLCpGZYYVRPOAgAKldxhGCa" & _ "JokGkgc4HHyrcCwfDAMraCQQWAAF62Jb1JyrSSBchnOwpDpuCaVQLXUB5RRNQyZTiyIrtS5AAqnNJzW5cE46Li0B5QAC8QA1S7NPo/HaZT5kGB7ZDddzuADfcLlfD5Bx" & _ "EDCUhQmEPAbl6K4hlKQ5snwNwtleDxpBeMRIHmd4+A8R4/BuRZvEABQDEmDJoHUOQZEYMgVjQSIEE0fwRjCWQJAoEIXHWQxCAGBBggAbpemOCJaDaRowkQKwfgSEJCBQ" & _ "DAGnCWAsDYTJTLSBwOlgfghggIgohYIA3A0Iw8GcCxCigZAsguB4hBwQ4HAyZAMjMJhJjIPBdA0SZxkAOoPEOIhMGEDYJHGSB0gmIg5CYSAokgAZggME4DCkAhACbIhg" & _ "ioIwImQDhXCOCQRHgNwogcIJyGCGImBGMAyAqYxJCISINAcAJcC0JxGmCbIiByQ5Zk4dYdCWORqFgJJGACYIkB0A5pn6AYgAmcY8DwHRDlCOg3CaZIKCwfgSgOOgUDwK" & _ "RHFCfoUiWKRaF4eQACWMhUGEDoKHGWBAigag6gqJIpCmYJogMExDEqLA0ioah6giKAdkQGpOjWLQrGobjfEYMJwioHhEDqfpBjACohmAQoxGwewakiMpsisNBCCqbALE" & _ "AQ40i0KtjCYRhQnSLQekQWxul2NwKlGaBEjgbg7gqZI5m4a4kEQK4tkuMBFjuLprFiDgnAYYJ8jAHxEHuXp5j4L4rnafI/m+PAGnoLBvgwEBH5Aa5Ih8GhEBKUIABKMJ" & _ "sEMDwtAecQnBSRYxFwXwakYcZBCSNZDnGcQrCGlIigQagQkscgIEyShyjyKI3CARI8j8MZMDMLJXDSTZEjKYwqk6BJMnMPI8goMYwEQLoIEEOxElGNBdB8SpSHSTQjE6" & _ "UZLj0FxRBONQ9E6cgpEaUQYj0IYFA0bxdlcNZilwfwTEiYRUDwHZDkCSxoAyNhQnMYgTHWYp4gcFB3C2Uxzl0N4IoQBvAjEwAQIApRfDvH2PELgOhEhUDwI0GgxBIgED" & _ "QEMRQ4hPgGBKBgEgSBTjIHkHwS4KQ8siEQJIMIkQxCvBwCoS4hAQCkBuIYcIuRrBzE6BMK4Eg7D0HOEAewIgDilFwPwE4mBODvDUCoew9BsiMCyJYQg+BlAiEwMQNArx" & _ "wCKH6PARYLR6hSCuFYMYFRSgZBMCwA45gfiFHSAocomB5AnCmGcH4tAkgNFGHkFQNAGAEHAN4GQERhgQF0GsDIxg/iTHIJwMw4RVA2EMCEOA9APgGE+JgNATBHE4F6Ac" & _ "UAZwuAYAAAgBBAQ==") .set_Misc(EXGRAPHLib.MiscEnum.extVisibleBeforeAxis,1) .AutoFit = True .DataOptions = "hdr=1 eor=';' eof=' '" .Data = "Month Min Max;Jan -2 10;Feb 0 12;Mar 3 15;Apr 7 18;May 12 22;Jun 16 25;Jul 18 28;Aug 17 27;Sep 14 24;Oct 9 19;Nov 4 15;Dec 0 10" & _ "" With .ValueAxis .Format = "value + `°`" .MajorGridLines.Color = "transparent" End With With .CategoryAxis .Categories = "Month" .MajorGridLines.Color = "lightgray" End With With .Series.Add() .Data = "Min,Max" .Type = "RangeColumn" .Vertical = True .Color = 16777216 End With .SeriesColors = "RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(" & _ "255,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)" .EndUpdate() End With |
229 |
Updates the x-axis, y-axis
With AxGraph1 With .XAxis.AxisLine .Width = 2 .Color = "red" End With With .YAxis.AxisLine .Width = 2 .Color = "red" End With With .Series.Add() .Data = "1 99 1,2 96 2,3 92 3,4 86 4,5 79 5,6 70 6,7 60 7,8 50 8,9 38 9,10 25 10,11 13 11" .Type = "bubble" .Misc(EXGRAPHLib.SerieMiscEnum.exScatterPlotSize) = 96 End With End With |
228 |
Updates the default/first value-axis
|
227 |
Updates the default/first category-axis
With AxGraph1 .BeginUpdate() .AutoFit = True With .CategoryAxis .Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania" .MajorGridLines.Color = "lightgray" End With With .Series With .Add("4600,1300,747,579,0,422,42") .Name = "Population" .Type = "Line" .Misc(EXGRAPHLib.SerieMiscEnum.exLineSize) = 3 End With With .Add("4458,3037,1018,2470,1784,1018,856") .Name = "Area" .Type = "Column" End With End With .Legend.Visible = True .EndUpdate() End With |
226 |
Add multiple series into the same view
With AxGraph1 .BeginUpdate() .AutoFit = True With .CategoryAxis .Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania" .MajorGridLines.Color = "lightgray" End With With .Series With .Add("4600,1300,747,579,0,422,42") .Name = "Population" .Type = "Line" .Misc(EXGRAPHLib.SerieMiscEnum.exLineSize) = 3 End With With .Add("4458,3037,1018,2470,1784,1018,856") .Name = "Area" .Type = "Column" End With End With .Legend.Visible = True .EndUpdate() End With |
225 |
Do do I get the DAO version I have installed
With AxGraph1 Debug.Print( CreateObject("DAO.DBEngine.35").Version.Version ) Debug.Print( CreateObject("DAO.DBEngine.36").Version.Version ) Debug.Print( CreateObject("DAO.DBEngine.120").Version.Version ) End With |
224 |
How do I get a list of interfaces the object implemenets
Dim rs With AxGraph1 .BeginUpdate() With CreateObject("DAO.DBEngine.120") rs = .OpenDatabase("C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb").OpenRecordset("MSFT") End With Debug.Print( CreateObject("Exontrol.PropertiesList") ) .DataSource = rs .EndUpdate() End With |
223 |
Do do I get the ADO version I have installed
With AxGraph1 Debug.Print( "ADO Version:" ) Debug.Print( CreateObject("ADODB.Connection").Version.Version ) End With |
222 |
DAO, ACCDB, 120
Dim rs With AxGraph1 .BeginUpdate() .ValueSize = 6 With CreateObject("DAO.DBEngine.120") rs = .OpenDatabase("C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb").OpenRecordset("MSFT") End With .DataSource = rs With .CategoryAxis .Categories = "Date" With .ChartGridLines .Format = "value left 7" .Align = EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect .Color = "lightgray" End With .Format = "value left 7" .Split = True End With With .Series.Add() .Data = "Open,High,Low,Close" .Type = "ohlc" End With .EndUpdate() End With |
221 |
DAO, MDB, 120
Dim rs With AxGraph1 .BeginUpdate() .ValueSize = 6 With CreateObject("DAO.DBEngine.120") rs = .OpenDatabase("C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb").OpenRecordset("MSFT") End With .DataSource = rs With .CategoryAxis .Categories = "Date" With .ChartGridLines .Format = "value left 7" .Align = EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect .Color = "lightgray" End With .Format = "value left 7" .Split = True End With With .Series.Add() .Data = "Open,High,Low,Close" .Type = "ohlc" End With .EndUpdate() End With |
220 |
DAO, MDB
Dim rs With AxGraph1 .BeginUpdate() .ValueSize = 6 With CreateObject("DAO.DBEngine.36") rs = .OpenDatabase("C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.mdb").OpenRecordset("MSFT") End With .DataSource = rs With .CategoryAxis .Categories = "Date" With .ChartGridLines .Format = "value left 7" .Align = EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect .Color = "lightgray" End With .Format = "value left 7" .Split = True End With With .Series.Add() .Data = "Open,High,Low,Close" .Type = "ohlc" End With .EndUpdate() End With |
219 |
ADODB, ACCDB, x64
Dim rs With AxGraph1 .BeginUpdate() .ValueSize = 6 rs = CreateObject("ADODB.Recordset") With rs .Open("MSFT","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb",1,1) End With .DataSource = rs With .CategoryAxis .Categories = "Date" With .ChartGridLines .Format = "value left 7" .Align = EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect .Color = "lightgray" End With .Format = "value left 7" .Split = True End With With .Series.Add() .Data = "Open,High,Low,Close" .Type = "ohlc" End With .EndUpdate() End With |
218 |
ADOR, ACCDB
Dim rs With AxGraph1 .BeginUpdate() .ValueSize = 6 rs = CreateObject("ADOR.Recordset") With rs .Open("MSFT","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb",3,3) End With .DataSource = rs With .CategoryAxis .Categories = "Date" With .ChartGridLines .Format = "value left 7" .Align = EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect .Color = "lightgray" End With .Format = "value left 7" .Split = True End With With .Series.Add() .Data = "Open,High,Low,Close" .Type = "ohlc" End With .EndUpdate() End With |
217 |
ADODB, MDB
Dim rs With AxGraph1 .BeginUpdate() .ValueSize = 6 rs = CreateObject("ADODB.Recordset") With rs .Open("MSFT","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb",3,3) End With .DataSource = rs With .CategoryAxis .Categories = "Date" With .ChartGridLines .Format = "value left 7" .Align = EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect .Color = "lightgray" End With .Format = "value left 7" .Split = True End With With .Series.Add() .Data = "Open,High,Low,Close" .Type = "ohlc" End With .EndUpdate() End With |
216 |
ADOR, MDB
Dim rs With AxGraph1 .BeginUpdate() .ValueSize = 6 rs = CreateObject("ADOR.Recordset") With rs .Open("MSFT","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb",3,3) End With .DataSource = rs With .CategoryAxis .Categories = "Date" With .ChartGridLines .Format = "value left 7" .Align = EXGRAPHLib.DrawTextFormatEnum.exTextCalcRect .Color = "lightgray" End With .Format = "value left 7" .Split = True End With With .Series.Add() .Data = "Open,High,Low,Close" .Type = "ohlc" End With .EndUpdate() End With |
215 |
The value-axis gets updated as soon as the control is scrolled. It is possible to prevent that
With AxGraph1 .BeginUpdate() .ValueSize = 2 .set_Misc(EXGRAPHLib.MiscEnum.exUpdateRangeOnScroll,0) .Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt" Debug.Print( .DataSample ) .Series.Add("AAPL (open),AAPL (high),AAPL (low),AAPL (close)").Type = "candle" .EndUpdate() End With |
214 |
Debug the data I loaded, or gatter a data sample
With AxGraph1 .BeginUpdate() .ValueSize = 6 .Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt" Debug.Print( .DataSample ) .EndUpdate() End With |
213 |
Imports the control's data from a safe array (array, method 3)
Dim rs With AxGraph1 .BeginUpdate() .ValueSize = 6 rs = CreateObject("ADOR.Recordset") With rs .Open("MSFT","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Program Files\Exontrol\ExGraph\Sample\Access\sample.accdb",3,3) End With .Data = rs.GetRows() Debug.Print( .DataSample ) With .Series.Add() .Data = "Column 2,Column 3,Column 4,Column 5" .Type = "candle" End With .EndUpdate() End With |
212 |
Imports the control's data from a CSV format (file, method 2)
With AxGraph1 .BeginUpdate() .ValueSize = 6 .Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt" With .Series.Add() .Name = "aapl" .Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)" .Type = "candle" End With .EndUpdate() End With |
211 |
Imports the control's data from a CSV format (content, string, method 2)
With AxGraph1 .BeginUpdate() .set_Misc(EXGRAPHLib.MiscEnum.extVisibleBeforeAxis,1) .AutoFit = True .DataOptions = "hdr=1 eor=';' eof=' '" .Data = "Month Min Max;Jan -2 10;Feb 0 12;Mar 3 15;Apr 7 18;May 12 22;Jun 16 25;Jul 18 28;Aug 17 27;Sep 14 24;Oct 9 19;Nov 4 15;Dec 0 10" & _ "" With .ValueAxis .Format = "value + `°`" .MajorGridLines.Color = "transparent" End With With .CategoryAxis .Categories = "Month" .MajorGridLines.Color = "lightgray" End With With .Series.Add() .Data = "Min,Max" .Type = "RangeColumn" .Vertical = True End With .SeriesColors = "RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(" & _ "255,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)" .EndUpdate() End With |
210 |
Imports the control's data from a CSV format (file, method 1)
With AxGraph1 .BeginUpdate() .ValueSize = 6 .Import("C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt") With .Series.Add() .Name = "aapl" .Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)" .Type = "candle" End With .EndUpdate() End With |
209 |
Imports the control's data from a CSV format (content, string, method 1)
With AxGraph1 .BeginUpdate() .set_Misc(EXGRAPHLib.MiscEnum.extVisibleBeforeAxis,1) .AutoFit = True .Import("Month Min Max;Jan -2 10;Feb 0 12;Mar 3 15;Apr 7 18;May 12 22;Jun 16 25;Jul 18 28;Aug 17 27;Sep 14 24;Oct 9 19;Nov 4 15;Dec 0 10" & _ "","hdr=1 eor=';' eof=' '") With .ValueAxis .Format = "value + `°`" .MajorGridLines.Color = "transparent" End With With .CategoryAxis .Categories = "Month" .MajorGridLines.Color = "lightgray" End With With .Series.Add() .Data = "Min,Max" .Type = "RangeColumn" .Vertical = True End With .SeriesColors = "RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(" & _ "255,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)" .EndUpdate() End With |
208 |
Defines the field delimitators, such as eor(end of record), eof(end of field) and hdr(header)
With AxGraph1 .BeginUpdate() .set_Misc(EXGRAPHLib.MiscEnum.extVisibleBeforeAxis,1) .AutoFit = True .DataOptions = "hdr=1 eor=';' eof=' '" .Data = "Month Min Max;Jan -5 2;Feb -4 7;Mar 1 12;Apr 5 17;May 10 23;Jun 14 26;Jul 15 28;Aug 14 28;Sep 11 25;Oct 5 18;Nov 1 9;Dec -3 4" With .ValueAxis .Format = "value + `°`" .MajorGridLines.Color = "transparent" End With With .CategoryAxis .Categories = "Month" .MajorGridLines.Color = "lightgray" End With With .Series.Add() .Data = "Min,Max" .Type = "RangeColumn" End With .SeriesColors = "RGB(9,80,239),RGB(9,120,239),RGB(249,186,7),RGB(249,173,7),RGB(255,148,51),RGB(255,125,51),RGB(255,114,51),RGB(255,120,51),RGB(" & _ "255,139,51),RGB(249,171,7),RGB(249,200,7),RGB(9,110,239)" .EndUpdate() End With |
207 |
Defines the size of the control's tooltip margins
' MouseMove event - Occurs when the user moves the mouse. Private Sub AxGraph1_MouseMoveEvent(ByVal sender As System.Object, ByVal e As AxEXGRAPHLib._IGraphEvents_MouseMoveEvent) Handles AxGraph1.MouseMoveEvent With AxGraph1 .ShowToolTip("just a text to be shown when cursor hovers the view","title") End With End Sub With AxGraph1 .BeginUpdate() .AutoFit = True .ToolTipMargin = "16,16" .Series.Add("Asia(4600),Africa(1300),Europe(747),North America(579),South America(433),Australia/Oceania(42)") .EndUpdate() End With |
206 |
Sets the size of icons the control displays
With AxGraph1 .BeginUpdate() .ImageSize = 32 .Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") .AutoFit = True .Series.Add("<img>1</img>Asia(4600),<img>2</img>Africa(1300),<img>3</img>Europe(747),<img>4</img>North America(579),<img>5</img>South Americ" & _ "a(433),<img>6</img>Australia/Oceania(42)") .SeriesColors = "blue" .EndUpdate() End With |
205 |
Prevents the control to fire any event
With AxGraph1 .FreezeEvents(True) .BeginUpdate() .AutoFit = True .Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").Vertical = True .EndUpdate() .FreezeEvents(False) End With |
204 |
Display columns using EBN colors (BASE64)
With AxGraph1 .BeginUpdate() .VisualAppearance.Add(1,"gBFLBCJwBAEHhEJAAEhABUQDg6AADACAxRDAMgBQKAAzAJBIYhiGgcYCgMZBSDeCYXABCEYRXBIZQ7BKNIxjSJwFiCCQwSDKEjyCKsGRHF6MI6gOYpCgOIYjRJNIASV" & _ "AceAAHCUZrjSgobAiCYlTZCIBQS5oOBIACmabiegZLgmQInUrMEggVDgJSPuTWNQUdYdJQTHIZBpEWyLKjkNQwWrCNr3DTUEyNDauIDpCKLCpGZYYVRPOAgAKldxhGCa" & _ "JokGkgc4HHyrcCwfDAMraCQQWAAF62Jb1JyrSSBchnOwpDpuCaVQLXUB5RRNQyZTiyIrtS5AAqnNJzW5cE46Li0B5QAC8QA1S7NPo/HaZT5kGB7ZDddzuADfcLlfD5Bx" & _ "EDCUhQmEPAbl6K4hlKQ5snwNwtleDxpBeMRIHmd4+A8R4/BuRZvEABQDEmDJoHUOQZEYMgVjQSIEE0fwRjCWQJAoEIXHWQxCAGBBggAbpemOCJaDaRowkQKwfgSEJCBQ" & _ "DAGnCWAsDYTJTLSBwOlgfghggIgohYIA3A0Iw8GcCxCigZAsguB4hBwQ4HAyZAMjMJhJjIPBdA0SZxkAOoPEOIhMGEDYJHGSB0gmIg5CYSAokgAZggME4DCkAhACbIhg" & _ "ioIwImQDhXCOCQRHgNwogcIJyGCGImBGMAyAqYxJCISINAcAJcC0JxGmCbIiByQ5Zk4dYdCWORqFgJJGACYIkB0A5pn6AYgAmcY8DwHRDlCOg3CaZIKCwfgSgOOgUDwK" & _ "RHFCfoUiWKRaF4eQACWMhUGEDoKHGWBAigag6gqJIpCmYJogMExDEqLA0ioah6giKAdkQGpOjWLQrGobjfEYMJwioHhEDqfpBjACohmAQoxGwewakiMpsisNBCCqbALE" & _ "AQ40i0KtjCYRhQnSLQekQWxul2NwKlGaBEjgbg7gqZI5m4a4kEQK4tkuMBFjuLprFiDgnAYYJ8jAHxEHuXp5j4L4rnafI/m+PAGnoLBvgwEBH5Aa5Ih8GhEBKUIABKMJ" & _ "sEMDwtAecQnBSRYxFwXwakYcZBCSNZDnGcQrCGlIigQagQkscgIEyShyjyKI3CARI8j8MZMDMLJXDSTZEjKYwqk6BJMnMPI8goMYwEQLoIEEOxElGNBdB8SpSHSTQjE6" & _ "UZLj0FxRBONQ9E6cgpEaUQYj0IYFA0bxdlcNZilwfwTEiYRUDwHZDkCSxoAyNhQnMYgTHWYp4gcFB3C2Uxzl0N4IoQBvAjEwAQIApRfDvH2PELgOhEhUDwI0GgxBIgED" & _ "QEMRQ4hPgGBKBgEgSBTjIHkHwS4KQ8siEQJIMIkQxCvBwCoS4hAQCkBuIYcIuRrBzE6BMK4Eg7D0HOEAewIgDilFwPwE4mBODvDUCoew9BsiMCyJYQg+BlAiEwMQNArx" & _ "wCKH6PARYLR6hSCuFYMYFRSgZBMCwA45gfiFHSAocomB5AnCmGcH4tAkgNFGHkFQNAGAEHAN4GQERhgQF0GsDIxg/iTHIJwMw4RVA2EMCEOA9APgGE+JgNATBHE4F6Ac" & _ "UAZwuAYAAAgBBAQ==") .AutoFit = True With .Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)") .Color = 16777216 .Vertical = True End With .EndUpdate() End With |
203 |
Display columns using EBN colors
With AxGraph1 .BeginUpdate() .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .AutoFit = True .Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").Color = 16777216 .EndUpdate() End With |
202 |
Show images
With AxGraph1 .BeginUpdate() .set_HTMLPicture("china","c:\exontrol\images\zipdisk.gif") .set_HTMLPicture("india","c:\exontrol\images\auction.gif") .set_HTMLPicture("usa","c:\exontrol\images\colorize.gif") .set_Misc(EXGRAPHLib.MiscEnum.exShowValueIf,0) .set_Misc(EXGRAPHLib.MiscEnum.exShowLabelsIf,0) .ValueSize = 32 With .CategoryAxis .Categories = "<img>china</img>,<img>india</img>,<img>usa</img>" .MajorGridLines.Color = "lightgray" End With .Series.Add("1410,1390,331") .EndUpdate() End With |
201 |
Shows a custom tooltip
' MouseMove event - Occurs when the user moves the mouse. Private Sub AxGraph1_MouseMoveEvent(ByVal sender As System.Object, ByVal e As AxEXGRAPHLib._IGraphEvents_MouseMoveEvent) Handles AxGraph1.MouseMoveEvent With AxGraph1 .ShowToolTip("just a text to be shown when cursor hovers the view","title") End With End Sub With AxGraph1 .BeginUpdate() .AutoFit = True .Series.Add("Asia(4600),Africa(1300),Europe(747),North America(579),South America(433),Australia/Oceania(42)") .EndUpdate() End With |