Trendline in Legend?

Post Author: vjromeo
CA Forum: Charts and Graphs
Is it not possible in Crystal XI to have an entry in the chart legend for a trendline?  I have charts that have been done in Excel, that we'd like to move to Crystal, which include multiple trendlines for various series, and at times legend entries are important to be able to tell on what series a trendline is based.

Not exactly sure if this will work for CR XI, but in later versions of CR you have to select the series in the graph which you would like to create a trendline on and change it to be the trendline.
Therefore, click on the series in the graph that you would like to become the trendline. (Make sure the series is highlighted before right-clicking on the highlighted section)  Right-click on the highlighted series, and then select "Trendlines".
You will then get an option to select the type of trendline to use. Once selected, the trendline will be created and applied in the graph.

Similar Messages

  • Crystal Report Chart Problem: No trendlines with regression

    Hi,
    I have a severe problem with chart trendlines in Crystal Reports 2008 (12.3.0.601).
    Trendlines with regression do not work, whereas  average and moving average work on charts with data axis but not with numerical axis.
    Does anyone has an idea, how to solve it.
    Best regards
    Michael

    hi,
    Try to create a bar chart with Year, Quarter as dimensions and Sales revenue as measure.
    Now your chart has legend which shows quarter values.
    Right Click the Legend value Q1 -> Series Options -> Trendline.
    Choose the required regression type: Linear/ Polynomial/ Logarthmic/ exponential/ Moving Average.
    This will show the required trend line.
    Regards,
    Vamsee

  • Hiding plots in legend

    Hello,
    I am currently producing a XY graph based on a set of points.  Along with this, I plot three trendlines that the user then will select from.  When he/she selects one of the trendlines, I wish for the other two to disappear.  Currently, I am able to use the Property "Plots"->"Visible" to cause the actual trendline to disappear.  However, the name of the plot is still shown in the legend (although the sample of how the curve looks is blank as desired).  I am wondering if there is a way to cause the name in the legend to also disappear. 
     I know that it is possible to use "Legend" -> "Number of Rows", but this seems to limit the plots shown in the legend based on their order.  For example, if I have plots "Curve", "Trendline 1", "Trendline 2", "Trendline 3", and desire to select Trendline 3 only, setting Number  of Rows to 2 will show "Curve" and "Trendline 1".  I believe it is possible to take the data and reformat it so that the second plot becomes the desired trendline, but I was hoping to avoid this if possible. 
    I attached a small VI to show what I am doing so far.
    Thanks
    Attachments:
    VisiblePlot.vi ‏18 KB

    Hello Guruthilak,
    Thank you for the reply and sample VI.  While the VI that you attached was certainly better than my original, there is still the issue of the blank space existing where the trendline used to be.  I also programmed the attached VI based on your first approach.  The issue is that when I rename the plots to the legends, it just renames the existing trendlines.  For example, if I want "Curve" and "Trendline2", the Legend will read
    "Curve - <white line>"
    "Trendline2 - <blank space>"
    Is there an additional step that must be taken? 
    Thank you again for the help
    Attachments:
    VisiblePlot[1]_Mod[2].vi ‏23 KB

  • Remove series from legend

    Post Author: vjromeo
    CA Forum: Charts and Graphs
    I'd like to be able to remove a series from the legendor perhaps there's another way to crack this nut... in a stacked-bar chart, we want a trendline for the sum of the stacked bars (i.e. the top of each stack).  In Excel, I did this by adding a series that was the sum of the bars in a stack and added a trendline based on that series.  I set the series to be transparent, deleted it from the legend (which one can easily do in Excel), and everything was great.  I've figured out how to do all of this in Crystal, except delete the legend entry for the transparent series (and add the trendline to the legendbut that's a question in a separate post).

    Post Author: Dan3D
    CA Forum: Charts and Graphs
    If you just want to display a datalabel which is the sum of each stack , this functionality is built into the product. Go to right-mouse-menu ChartOptions and then the DataLabels tab and then select "Show Totals".

  • Trendline between two points

    hi
    i have a code like this
    trendline.jsp
    <%@page import="ChartDirector.*" %>
    <%
    // The data for the line chart
    double[] data = {50, 55, 47, 34, 42, 49, 63, 62, 73, 59, 56, 50, 64, 60, 67, 67, 58,
        59, 73, 77, 84, 82, 80, 91};
    // The labels for the line chart
    String[] labels = {"Jan 2000", "Feb 2000", "Mar 2000", "Apr 2000", "May 2000",
        "Jun 2000", "Jul 2000", "Aug 2000", "Sep 2000", "Oct 2000", "Nov 2000",
        "Dec 2000", "Jan 2001", "Feb 2001", "Mar 2001", "Apr 2001", "May 2001",
        "Jun 2001", "Jul 2001", "Aug 2001", "Sep 2001", "Oct 2001", "Nov 2001",
        "Dec 2001"};
    // Create a XYChart object of size 500 x 320 pixels, with a pale purpule (0xffccff)
    // background, a black border, and 1 pixel 3D border effect.
    XYChart c = new XYChart(500, 320, 0xffccff, 0x000000, 1);
    // Set the plotarea at (55, 45) and of size 420 x 210 pixels, with white background.
    // Turn on both horizontal and vertical grid lines with light grey color (0xc0c0c0)
    c.setPlotArea(55, 45, 420, 210, 0xffffff, -1, -1, 0xc0c0c0, -1);
    // Add a legend box at (55, 25) (top of the chart) with horizontal layout. Use 8 pts
    // Arial font. Set the background and border color to Transparent.
    c.addLegend(55, 22, false, "", 8).setBackground(Chart.Transparent);
    // Add a title box to the chart using 13 pts Times Bold Italic font. The text is
    // white (0xffffff) on a purple (0x800080) background, with a 1 pixel 3D border.
    c.addTitle("Long Term Server Load", "Times New Roman Bold Italic", 13, 0xffffff
        ).setBackground(0x800080, -1, 1);
    // Add a title to the y axis
    c.yAxis().setTitle("MBytes");
    // Set the labels on the x axis. Rotate the font by 90 degrees.
    c.xAxis().setLabels(labels).setFontAngle(90);
    // Add a line layer to the chart
    LineLayer lineLayer = c.addLineLayer();
    // Add the data to the line layer using light brown color (0xcc9966) with a 7 pixel
    // square symbol
    lineLayer.addDataSet(data, 0xcc9966, "Server Utilization").setDataSymbol(
        Chart.SquareSymbol, 7);
    // Set the line width to 2 pixels
    lineLayer.setLineWidth(2);
    // tool tip for the line layer
    lineLayer.setHTMLImageMap("", "", "title='{xLabel}: {value} MBytes'");
    // Add a trend line layer using the same data with a dark green (0x008000) color. Set
    // the line width to 2 pixels
    TrendLayer trendLayer = c.addTrendLayer(data, 0x008000, "Trend Line");
    trendLayer.setLineWidth(2);
    // tool tip for the trend layer
    trendLayer.setHTMLImageMap("", "", "title='Change rate: {slope|2} MBytes/per month'");
    // output the chart
    String chart1URL = c.makeSession(request, "chart1");
    // include tool tip for the chart
    String imageMap1 = c.getHTMLImageMap("");
    %>
    <html>
    <body topmargin="5" leftmargin="5" rightmargin="0">
    <div style="font-size:18pt; font-family:verdana; font-weight:bold">
        Trend Line Chart
    </div>
    <img src='<%=response.encodeURL("getchart.jsp?"+chart1URL)%>'
        usemap="#map1" border="0">
    <map name="map1"><%=imageMap1%></map>
    </body>
    </html>getchart.jsp
    <%@page import="ChartDirector.*" %><%
    try
         out.clear();
         GetSessionImage.getImage(request, response);
         if (Math.max(1, 2) == 2) return;
    catch (IllegalStateException e)
         response.sendRedirect(response.encodeRedirectURL(
              "getchart.chart?" + request.getQueryString()));
         return;
    %>i have to draw a trendline chart...
    i searched for examples...
    i come across this. above example..
    actually my querry is i ve to draw the trendline between two points.
    in between "data" ( 63 to 70) only...
    is there any way to do this
    please help me
    thank you in advance.

    hi
    i tried this..
    <%@page import="ChartDirector.*" %>
    <%
    // The data for the line chart
    double[] dataX0 = {6};
    double[] dataY0 = {63};
    String[] labels2 = {"Jul 2000", "Aug 2000", "Sep 2000", "Oct 2000", "Nov 2000",
        "Dec 2000"};
    // The lengths (radii) and directions (angles) of the vectors
    double[] dataR = {3};
    double[] dataA = {60};
    // The labels for the line chart
    String[] labels = {"Jan 2000", "Feb 2000", "Mar 2000", "Apr 2000", "May 2000",
        "Jun 2000", "Jul 2000", "Aug 2000", "Sep 2000", "Oct 2000", "Nov 2000",
        "Dec 2000", "Jan 2001", "Feb 2001", "Mar 2001", "Apr 2001", "May 2001",
        "Jun 2001", "Jul 2001", "Aug 2001", "Sep 2001", "Oct 2001", "Nov 2001",
        "Dec 2001"};
    // Create a XYChart object of size 500 x 320 pixels, with a pale purpule (0xffccff)
    // background, a black border, and 1 pixel 3D border effect.
    XYChart c = new XYChart(500, 320, 0xffccff, 0x000000, 1);
    // Set the plotarea at (55, 45) and of size 420 x 210 pixels, with white background.
    // Turn on both horizontal and vertical grid lines with light grey color (0xc0c0c0)
    c.setPlotArea(55, 45, 420, 210, 0xffffff, -1, -1, 0xc0c0c0, -1);
    // Add a legend box at (55, 25) (top of the chart) with horizontal layout. Use 8 pts
    // Arial font. Set the background and border color to Transparent.
    c.addLegend(55, 22, false, "", 8).setBackground(Chart.Transparent);
    // Add a title box to the chart using 13 pts Times Bold Italic font. The text is
    // white (0xffffff) on a purple (0x800080) background, with a 1 pixel 3D border.
    c.addTitle("Long Term Server Load", "Times New Roman Bold Italic", 13, 0xffffff
        ).setBackground(0x800080, -1, 1);
    // Add a title to the y axis
    c.yAxis().setTitle("MBytes");
    // Set the labels on the x axis. Rotate the font by 90 degrees.
    c.xAxis().setLabels(labels).setFontAngle(90);
    c.addVectorLayer(dataX0, dataY0, dataR, dataA,1, 0x0000cc
        ).setArrowHead(11);
    /*LineLayer layer1 = c.addLineLayer();
    //LineLayer layer1 = c.addLineLayer(dataY0, 0xff3333, "Compound AAA");
    layer1.addDataSet(dataY0, 0xff3333, "Close Loop Line").setDataSymbol( Chart.LeftTriangleSymbol, 10);
    layer1.setXData(dataX0);
    layer1.setLineWidth(2);*/
    // Add a line layer to the chart
    LineLayer lineLayer = c.addLineLayer2();
    // Add the data to the line layer using light brown color (0xcc9966) with a 7 pixel
    // square symbol
    lineLayer.addDataSet(data, 0xcc9966, "Server Utilization").setDataSymbol(
        Chart.SquareSymbol, 7);
    lineLayer.setLineWidth(2);
    // output the chart
    String chart1URL = c.makeSession(request, "chart1");
    // include tool tip for the chart
    //String imageMap1 = c.getHTMLImageMap("");
    %>
    <html>
    <body topmargin="5" leftmargin="5" rightmargin="0">
    <div style="font-size:18pt; font-family:verdana; font-weight:bold">
        Trend Line Chart
    </div>
    <img src='<%=response.encodeURL("getchart.jsp?"+chart1URL)%>'
        usemap="#map1" border="0">
    </body>
    </html>how can i set the angle of direction for the arrow..
    suppose
    i wanna draw an arrow b/w these points
    y=50 to y=37
    how can give the length and direction here
    c.addVectorLayer(dataX0, dataY0, dataR, dataA,1, 0x0000cc
        ).setArrowHead(11);i mean in daraR and dataA...
    please help me
    thank you in advance

  • Crystal Reports Linear Regression Trendline Slope

    I need to know the slope of my linear regression trendline from my chart to determine whether the trend is positive or negative. I can't find any information on how to display and/or use that value in a formula.

    It appears that the steps I was taking was incorrect.  To actually get the trendline, you need to click the line in the line chart that you want the trendline to be against.  Follow the steps above BUT do not start it from the legend.

  • Filename in legend

    Hello.
    Quite a basic question but several trials and none worked..
    So in the legend I just want to display the filename without the channel as in "channel name (file name)". I tried free text with "@@ChnFileName(CurrChnNo)@@" but it did not worked out.
    How cn I do this?
    Best regards,
    Brice
    Solved!
    Go to Solution.

    Hi Brice,
    You've got the right idea, but the channel property you need to use is "SourceDataFileName", and you need to use either the ChnPropGet() or ChnPropVaGet() function or the new Data.GetChannel(CCN).Properties approach available in DIAdem 11.0 and later:
    @@ChnPropGet(CCN, "sourcedatafilename")@@ 
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Adding a single quote in the flash chart legend

    Hi all,
    I am using a following code to create a line chart.
    SELECT null link
    ,TO_CHAR(monat, 'MON-YY')
    ,ROUND(No_of_hits/1000) "No of Clicks(''000)"
    FROM
    SELECT DISTINCT TRUNC(ref_month,'MONTH') monat
    ,SUM(no_of_hits) OVER (ORDER BY TRUNC(ref_month,'MONTH') RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) No_of_hits
    FROM goodnews_hits
    WHERE ref_month BETWEEN :p77_DATE_startline
    AND :p77_DATE_endline
    ORDER BY monat;
    I get the following legend in the top region of the chart
    No Of Stories
    No of Clicks(''000)
    I need the No of Clicks to be displayed as
    No of Clicks('000)
    i.e.
    Only one single quote before 000
    Could you please tell me , how this can be achieved?
    Thanks,
    Archana

    As I said in my earlier post, I am looking for the tooltips for the Presentation tables and columns. The tooltips for these were extracted from the RPD using the externalize Strings option and these externalized strings are stored in the database.
    So I am escaping the single using a single quote both in rpd and in the database.
    Example text I have used both in the rpd and database is something like "Shipment's start time". I tried with "Shipment''s start time", " Shipment'''s start time", but it didn't work.
    Thanks!!
    Vasantha.P

  • How Rock Guitar Legend Slash Hopes to Hack Music Discovery Apps

    Editor's Note: What do you guys think about the concept of apps helping artists with music discovery? Does it have legs? Is it monetizeable? Read and then let us know your thoughts on this thread.--ks
    http://thenextweb.com/insider/2014/03/10/sxslashat​hon-rock-legend-slash-hopes-hack-music-discovery (via TheNextWeb.com)
    Glance at this year’s SXSW schedule and “Slashathon” might sound like an all-night 80s horror flick screening. In reality, the title is fairly literal: rock guitarist Slash is hosting an artist-focused hackathon on Wednesday with the hopes of drawing in crowds at the perfect mid-point between SXSW’s Interactive and Music sessions.
    “It was an idea that came up when we were brainstorming the launch of our new record,” Slash, also uncommonly known as Saul Hudson, tells The Next Web in a phone interview. “I’m sure there are a lot of people out there who don’t have a platform to talk about new tech ideas for music, so we hope that the event helps inspire software developers to create something unique in the spur of the moment.”
    Despite having been involved in several apps and video games, Slash says he’s not a particularly techie person, and is mostly interested in music recording apps that aid artists on the go. “I travel a lot, so tuner apps or things that enhance sound recordings are what I’m most interested in.”
    A fan of Spotify and Pandora, the guitarist says music streaming apps are great for artists to both discover new music and share with fans, and he hopes to see more apps devoted to helping artists gain exposure.
    “This is what people do now: they go to their computers and smartphones and find new music, shows, and artists,” Slash says. “Spotify and Pandora have definitely helped soften the blow on musical piracy… making records is a huge business now, and these apps help artists feel like they’re not doing it for nothing.”
    While he doesn’t intend for the Slashathon to necessarily “solve” problems — as most startups tend to focus on — he would like to see music discovery become more catered to recording artists, not just consumers.
    “I’d like to see the trend continue on apps that help artists get the word out about their new records and local shows,” he says.
    It’s not surprising that a musician like Slash is keen on discovering new music. Thanks to Guitar Hero’s repopularization of “Sweet Child O’ Mine,” it’s hard to escape a dive bar or TV commercial without the familiar rock rhythms, even for Slash himself.
    But of course, he’s grateful for the multi-generational love that’s passed along, decades after the song emerged.
    “I was definitely more sick of it when we first wrote, recorded, and played it,” Slash says. “But over the years… it’s one of those things where you have to appreciate that a lot of people still like it.”
    The SXSW Slashathon takes place at Capital Factory, and begins at 9 AM on March 12.
    LenovoDev.com Manager

    Editor's Note: What do you guys think about the concept of apps helping artists with music discovery? Does it have legs? Is it monetizeable? Read and then let us know your thoughts on this thread.--ks
    http://thenextweb.com/insider/2014/03/10/sxslashat​hon-rock-legend-slash-hopes-hack-music-discovery (via TheNextWeb.com)
    Glance at this year’s SXSW schedule and “Slashathon” might sound like an all-night 80s horror flick screening. In reality, the title is fairly literal: rock guitarist Slash is hosting an artist-focused hackathon on Wednesday with the hopes of drawing in crowds at the perfect mid-point between SXSW’s Interactive and Music sessions.
    “It was an idea that came up when we were brainstorming the launch of our new record,” Slash, also uncommonly known as Saul Hudson, tells The Next Web in a phone interview. “I’m sure there are a lot of people out there who don’t have a platform to talk about new tech ideas for music, so we hope that the event helps inspire software developers to create something unique in the spur of the moment.”
    Despite having been involved in several apps and video games, Slash says he’s not a particularly techie person, and is mostly interested in music recording apps that aid artists on the go. “I travel a lot, so tuner apps or things that enhance sound recordings are what I’m most interested in.”
    A fan of Spotify and Pandora, the guitarist says music streaming apps are great for artists to both discover new music and share with fans, and he hopes to see more apps devoted to helping artists gain exposure.
    “This is what people do now: they go to their computers and smartphones and find new music, shows, and artists,” Slash says. “Spotify and Pandora have definitely helped soften the blow on musical piracy… making records is a huge business now, and these apps help artists feel like they’re not doing it for nothing.”
    While he doesn’t intend for the Slashathon to necessarily “solve” problems — as most startups tend to focus on — he would like to see music discovery become more catered to recording artists, not just consumers.
    “I’d like to see the trend continue on apps that help artists get the word out about their new records and local shows,” he says.
    It’s not surprising that a musician like Slash is keen on discovering new music. Thanks to Guitar Hero’s repopularization of “Sweet Child O’ Mine,” it’s hard to escape a dive bar or TV commercial without the familiar rock rhythms, even for Slash himself.
    But of course, he’s grateful for the multi-generational love that’s passed along, decades after the song emerged.
    “I was definitely more sick of it when we first wrote, recorded, and played it,” Slash says. “But over the years… it’s one of those things where you have to appreciate that a lot of people still like it.”
    The SXSW Slashathon takes place at Capital Factory, and begins at 9 AM on March 12.
    LenovoDev.com Manager

  • Lag spikes in League of Legends, due to fatal error 40 state 107?

    Razer Game Booster Diagnostics Report v2.0  Version: 4.1.59.0
    Date: 2014/02/10 17:47:03
    01 - Operating System
    0101 - Operating System : Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.130828-1532)
    0102 - Language : English (Regional Setting: English)
    0103 - BIOS : BIOS Date: 03/12/12 09:47:18 Ver: 04.06.05
    0104 - Processor : Intel(R) Core(TM) i5-2320 CPU @ 3.00GHz (4 CPUs), ~3.0GHz
    0105 - Memory : 8192MB RAM
    0106 - Available OS Memory : 8070MB RAM
    0107 - Page File : 4249MB used, 11889MB available
    0108 - Windows Dir : C:\Windows
    0109 - DirectX Version : DirectX 11
    0110 - DX Setup Parameters : Not found
    0111 - User DPI Setting : 120 DPI (125 percent)
    0112 - System DPI Setting : 96 DPI (100 percent)
    0113 - DWM DPI Scaling : Disabled
    0114 - DxDiag Version : 6.01.7601.17514
    02 - Processor
    0201 - Caption : Intel(R) Core(TM) i5-2320 CPU @ 3.00GHz x4 ~3001MHz
    0202 - Current Clock Speed : 3001MHz
    03 - Video Adapter
    0301 - Card Name : Intel(R) HD Graphics Family
    0302 - Manufacturer : Intel Corporation
    0303 - Chiptype : Intel(R) HD Graphics Family
    0304 - DAC Type : Internal
    0305 - Device Key : Enum\PCI\VEN_8086&DEV_0102&SUBSYS_063D1025&REV_09
    0306 - Display Memory : 1696 MB
    0307 - AdapterRAM : -2084569088 Byte
    0308 - Current Mode : 1440 x 900 (32 bit) (60Hz)
    0309 - Monitor Name : ACER X193W (Analog)
    0310 - Driver Name : igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumd32,igd10umd32,igd10umd32
    0311 - Driver Version : 8.15.0010.2598
    0312 - Driver Language : English
    0313 - DDI Version : 10.1
    0314 - Driver Model : WDDM 1.1
    0315 - Driver Beta : False
    0316 - Driver Debug : False
    0317 - Driver Date : 12/15/2011 03:01:08
    0318 - Driver Size : 8018944
    0319 - VDD : n/a
    0320 - Mini VDD : n/a
    0321 - Mini VDD Date : n/a
    0322 - Mini VDD Size : 0
    0323 - Device Identifier : {D7B78E66-4242-11CF-B379-3726A9C2C535}
    0324 - Vendor ID : 0x8086
    0325 - Device ID : 0x0102
    0326 - SubSys ID : 0x063D1025
    0327 - Revision ID : 0x0009
    0328 - Driver Strong Name : oem7.inf:IntelGfx.NTamd64.6.0:iSNBD0:8.15.10.2598:pci\ven_8086&dev_0102&subsys_063d1025
    0329 - Rank Of Driver : 00E60001
    0330 - Video Accel : ModeMPEG2_A ModeMPEG2_C ModeWMV9_C ModeVC1_C
    0331 - Deinterlace Caps : {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
    0332 - D3D9 Overlay : Supported
    0333 - DXVA-HD : Supported
    0334 - DDraw Status : Enabled
    0335 - D3D Status : Enabled
    0336 - AGP Status : Enabled
    0337 - Notes : No problems found.
    0338 - OpenGL : 6.1.7600.16385 (win7_rtm.090713-1255)
    04 - Memory
    0401 - Total Memory : 7.88 GB
    0402 - Free Memory : 6.06 GB
    0403 - Total Pagefile : 15.76 GB
    0404 - Free Pagefile : 11.61 GB
    0405 - Bank Label : BANK1
    0406 - Speed : 1333 MHz
    0407 - Total Width : 64 Bits
    0408 - Capacity : 4.00 GB
    0405 - Bank Label : BANK2
    0406 - Speed : 1333 MHz
    0407 - Total Width : 64 Bits
    0408 - Capacity : 4.00 GB
    05 - Network
    0501 - Description : 802.11n Wireless LAN Card
    0502 - Driver Date : 4-19-2011
    0503 - Driver Version : 3.2.1.0
    06 - Motherboard
    0601 - Model : DX4870
    0602 - Manufacturer : Gateway
    07 - Sound Device
    0701 - Description : Speakers (Realtek High Definition Audio)
    0702 - Default Sound Playback : True
    0703 - Default Voice Playback : True
    0704 - Hardware ID : HDAUDIO\FUNC_01&VEN_10EC&DEV_0662&SUBSYS_10258100&REV_1003
    0705 - Manufacturer ID : 1
    0706 - Product ID : 100
    0707 - Type : WDM
    0708 - Driver Name : RTKVHD64.sys
    0709 - Driver Version : 6.00.0001.6505
    0710 - Driver attributes : Final Retail
    0711 - Date and Size : 11/15/2011 21:58:28
    0713 - Driver Provider : Realtek Semiconductor Corp.
    0714 - Min/Max Sample Rate : 251039936, 251039936
    0715 - Static/Strm HW Mix Bufs : 251039936, 251039936
    0716 - Static/Strm HW 3D Bufs : 251039936, 251039936
    0717 - HW Memory : 10240
    0718 - Voice Management : False
    0719 - EAX(tm) 2.0 Listen/Src : False, False
    0720 - I3DL2(tm) Listen/Src : False, False
    0721 - Notes : No problems found.
    08 - Harddisk
    0801 - Model : ST1000DM003-9YN162(Seagate, G)
    0802 - Media Type : Fixed hard disk media
    0803 - Size : 931.51 GB
    0804 - Interface Type : Serial ATA
    0801 - Model : Generic- Multi-Card USB Device
    0802 - Media Type : NULL
    0803 - Size : 0
    0805 - Driver Date : 6-21-2006
    0806 - DriverVersion : 6.1.7600.16385
    0807 - Caption : C:\
    0808 - Capacity : 913.41 GB
    0809 - Free Space : 756.26 GB
    0810 - Drive Type : 3-Fixed
    0811 - File System : NTFS
    0807 - Caption : Q:\
    09 - Process
    0901 - 0000 Idle                              0 0    0               
    0901 - 0004 System                            0 0    0               
    0901 - 01bc smss.exe                          0 0    0   normal      
    0901 - 0274 csrss.exe                         0 0    0   normal      
    0901 - 02bc csrss.exe                         1 174  80  normal      
    0901 - 02c4 wininit.exe                       0 0    0   high        
    0901 - 02f4 winlogon.exe                      1 7    0   high        
    0901 - 0324 services.exe                      0 0    0   normal      
    0901 - 032c lsass.exe                         0 0    0   normal      
    0901 - 0338 lsm.exe                           0 0    0   normal      
    0901 - 039c svchost.exe                       0 0    0   normal      
    0901 - 03ec svchost.exe                       0 0    0   normal      
    0901 - 028c svchost.exe                       0 0    0   normal      
    0901 - 02c0 svchost.exe                       0 0    0   normal      
    0901 - 036c svchost.exe                       0 0    0   normal      
    0901 - 03fc svchost.exe                       0 0    0   normal      
    0901 - 0468 svchost.exe                       0 0    0   normal      
    0901 - 04d8 svchost.exe                       0 0    0   normal      
    0901 - 0618 svchost.exe                       0 0    0   normal      
    0901 - 0670 armsvc.exe                        0 0    0   normal       C:\Program Files
    (x86)\Common Files\Adobe\ARM\1.0
    0901 - 069c avp.exe                           0 0    0   normal       C:\Program
    Files (x86)\Kaspersky Lab\Kaspersky Internet Security 2013
    0901 - 06b8 svchost.exe                       0 0    0   normal      
    0901 - 06d8 GREGsvc.exe                       0 0    0   normal       C:\Program Files (x86)\Gateway\Registration
    0901 - 0710 HeciServer.exe                    0 0    0   normal      
    0901 - 072c jhi_service.exe                   0 0    0   normal       C:\Program Files (x86)\Intel\Intel(R) Management
    Engine Components\DAL
    0901 - 0764 UpdaterService.exe                0 0    0   normal       C:\Program Files\Gateway\Gateway Updater
    0901 - 07b8 RzKLService.exe                   0 0    0   normal       C:\Program Files (x86)\Razer\Razer Game Booster
    0901 - 0420 taskhost.exe                      1 18   16  normal      
    0901 - 0834 dwm.exe                           1 17   2   high        
    0901 - 084c explorer.exe                      1 332  230 normal      
    0901 - 0950 sftvsa.exe                        0 0    0   normal       C:\Program Files
    (x86)\Microsoft Application Virtualization Client
    0901 - 09a4 sftlist.exe                       0 0    0   normal       C:\Program Files (x86)\Microsoft
    Application Virtualization Client
    0901 - 0b3c sidebar.exe                       1 42   49  normal      
    0901 - 0bac CVHSVC.EXE                        0 0    0   normal       C:\Program Files
    (x86)\Common Files\Microsoft Shared\Virtualization Handler
    0901 - 0bb8 SpotifyWebHelper.exe              1 9    4   normal       C:\Users\Brisnger\AppData\Roaming\Spotify\Data
    0901 - 0b74 avp.exe                           1 87   24  normal       C:\Program Files
    (x86)\Kaspersky Lab\Kaspersky Internet Security 2013
    0901 - 0b68 iusb3mon.exe                      1 18   7   normal       C:\Program Files (x86)\Intel\Intel(R)
    USB 3.0 eXtensible Host Controller Driver\Application
    0901 - 0c5c svchost.exe                       0 0    0   normal      
    0901 - 0d7c SearchIndexer.exe                 0 0    0   normal      
    0901 - 0be8 svchost.exe                       0 0    0   normal      
    0901 - 1270 dllhost.exe                       0 0    0   normal      
    0901 - 13e0 DeviceDetector.exe                1 29   18  below normal C:\Program Files (x86)\CyberLink\MediaEspresso\DeviceDetector
    0901 - 0d74 IAStorDataMgrSvc.exe              0 0    0   normal       C:\Program Files (x86)\Intel\Intel(R) Rapid Storage Technology
    0901 - 1158 LMS.exe                           0 0    0   normal       C:\Program
    Files (x86)\Intel\Intel(R) Management Engine Components\LMS
    0901 - 17d4 NASvc.exe                         0 0    0   normal       C:\Program Files
    (x86)\Nero\Update
    0901 - 16a0 svchost.exe                       0 0    0   normal      
    0901 - 0a3c UNS.exe                           0 0    0   normal       C:\Program
    Files (x86)\Intel\Intel(R) Management Engine Components\UNS
    0901 - 0f18 svchost.exe                       0 0    0   below normal
    0901 - 1364 FlashUtil64_12_0_0_44_ActiveX.exe 1 10   2   normal      
    0901 - 25c0 iexplore.exe                      1 4066 801 normal      
    0901 - 1338 IEXPLORE.EXE                      1 160  143 normal       C:\Program Files (x86)\Internet Explorer
    0901 - 1778 main.exe                          1 118  73  normal       C:\Program Files (x86)\Razer\Razer
    Game Booster
    0901 - 208c audiodg.exe                       0 0    0               
    0901 - 2b74 taskeng.exe                       0 0    0   below normal
    0901 - 3548 rundll32.exe                      0 0    0   below normal
    0901 - 29c0 VSSVC.exe                         0 0    0   normal      
    0901 - 185c RazerStarCraftIISysTray.exe       1 29   19  normal       C:\Program Files (x86)\Razer\Razer StarCraftII
    0901 - 0dec PresentationFontCache.exe         0 0    0   normal      
    0901 - 0c20 WLIDSVC.EXE                       0 0    0   normal      
    0901 - 28d0 WLIDSVCM.EXE                      0 0    0   normal      
    0901 - 15f4 rads_user_kernel.exe              1 9    2   normal       C:\Riot Games\League of Legends\RADS\system
    0901 - 314c LoLLauncher.exe                   1 21   5   normal       C:\Riot Games\League of Legends\RADS\projects\lol_launcher\releases\0.0.0.199\deploy
    0901 - 2718 WmiPrvSE.exe                      0 0    0   normal      
    0901 - 2a88 LolClient.exe                     1 63   20  normal       C:\Riot Games\League of Legends\RADS\projects\lol_air_client\releases\0.0.1.69\deploy
    0901 - 2914 WmiPrvSE.exe                      0 0    0   normal      
    10 - Service
    1001 - Adobe Acrobat Update Service - ["C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\armsvc.exe"]
    1001 - Application Information - [C:\Windows\system32\svchost.exe -k netsvcs]
    1001 - Windows Audio Endpoint Builder - [C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted]
    1001 - Windows Audio - [C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted]
    1001 - Kaspersky Anti-Virus Service - ["C:\Program Files (x86)\Kaspersky Lab\Kaspersky Internet Security 2013\avp.exe" -r]
    1001 - Base Filtering Engine - [C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork]
    1001 - Computer Browser - [C:\Windows\System32\svchost.exe -k netsvcs]
    1001 - Cryptographic Services - [C:\Windows\system32\svchost.exe -k NetworkService]
    1001 - Client Virtualization Handler - ["C:\Program Files (x86)\Common Files\Microsoft Shared\Virtualization Handler\CVHSVC.EXE"]
    1001 - DHCP Client - [C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted]
    1001 - DNS Client - [C:\Windows\system32\svchost.exe -k NetworkService]
    1001 - Extensible Authentication Protocol - [C:\Windows\System32\svchost.exe -k netsvcs]
    1001 - Windows Event Log - [C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted]
    1001 - COM+ Event System - [C:\Windows\system32\svchost.exe -k LocalService]
    1001 - Function Discovery Provider Host - [C:\Windows\system32\svchost.exe -k LocalService]
    1001 - Function Discovery Resource Publication - [C:\Windows\system32\svchost.exe -k LocalServiceAndNoImpersonation]
    1001 - Windows Font Cache Service - [C:\Windows\system32\svchost.exe -k LocalService]
    1001 - Windows Presentation Foundation Font Cache 3.0.0.0 - [C:\Windows\Microsoft.Net\Framework64\v3.0\WPF\PresentationFontCache.exe]
    1001 - GREGService - [C:\Program Files (x86)\Gateway\Registration\GREGsvc.exe]
    1001 - Human Interface Device Access - [C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted]
    1001 - HomeGroup Listener - [C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted]
    1001 - HomeGroup Provider - [C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted]
    1001 - Intel(R) Rapid Storage Technology - ["C:\Program Files (x86)\Intel\Intel(R) Rapid Storage Technology\IAStorDataMgrSvc.exe"]
    1001 - IKE and AuthIP IPsec Keying Modules - [C:\Windows\system32\svchost.exe -k netsvcs]
    1001 - Intel(R) Capability Licensing Service Interface - ["C:\Program Files\Intel\iCLS Client\HeciServer.exe"]
    1001 - Intel(R) Dynamic Application Loader Host Interface Service - [C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL\jhi_service.exe]
    1001 - CNG Key Isolation - [C:\Windows\system32\lsass.exe]
    1001 - Server - [C:\Windows\system32\svchost.exe -k netsvcs]
    1001 - Workstation - [C:\Windows\System32\svchost.exe -k NetworkService]
    1001 - Live Updater Service - [C:\Program Files\Gateway\Gateway Updater\UpdaterService.exe]
    1001 - TCP/IP NetBIOS Helper - [C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted]
    1001 - Intel(R) Management and Security Application Local Management Service - [C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\LMS\LMS.exe]
    1001 - Multimedia Class Scheduler - [C:\Windows\system32\svchost.exe -k netsvcs]
    1001 - Windows Firewall - [C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork]
    1001 - Nero Update - ["C:\Program Files (x86)\Nero\Update\NASvc.exe"]
    1001 - Network Connections - [C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted]
    1001 - Network List Service - [C:\Windows\System32\svchost.exe -k LocalService]
    1001 - Network Location Awareness - [C:\Windows\System32\svchost.exe -k NetworkService]
    1001 - Network Store Interface Service - [C:\Windows\system32\svchost.exe -k LocalService]
    1001 - Peer Networking Identity Manager - [C:\Windows\System32\svchost.exe -k LocalServicePeerNet]
    1001 - Program Compatibility Assistant Service - [C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted]
    1001 - Plug and Play - [C:\Windows\system32\svchost.exe -k DcomLaunch]
    1001 - IPsec Policy Agent - [C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted]
    1001 - Power - [C:\Windows\system32\svchost.exe -k DcomLaunch]
    1001 - User Profile Service - [C:\Windows\system32\svchost.exe -k netsvcs]
    1001 - RzKLService - [C:\Program Files (x86)\Razer\Razer Game Booster\RzKLService.exe]
    1001 - Security Accounts Manager - [C:\Windows\system32\lsass.exe]
    1001 - Windows Backup - [C:\Windows\system32\svchost.exe -k SDRSVC]
    1001 - System Event Notification Service - [C:\Windows\system32\svchost.exe -k netsvcs]
    1001 - Application Virtualization Client - ["C:\Program Files (x86)\Microsoft Application Virtualization Client\sftlist.exe"]
    1001 - Application Virtualization Service Agent - ["C:\Program Files (x86)\Microsoft Application Virtualization Client\sftvsa.exe"]
    1001 - Shell Hardware Detection - [C:\Windows\System32\svchost.exe -k netsvcs]
    1001 - SSDP Discovery - [C:\Windows\system32\svchost.exe -k LocalServiceAndNoImpersonation]
    1001 - Superfetch - [C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted]
    1001 - Themes - [C:\Windows\System32\svchost.exe -k netsvcs]
    1001 - Intel(R) Management and Security Application User Notification Service - ["C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\UNS\UNS.exe"]
    1001 - UPnP Device Host - [C:\Windows\system32\svchost.exe -k LocalServiceAndNoImpersonation]
    1001 - Desktop Window Manager Session Manager - [C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted]
    1001 - Volume Shadow Copy - [C:\Windows\system32\vssvc.exe]
    1001 - Windows Defender - [C:\Windows\System32\svchost.exe -k secsvcs]
    1001 - WinHTTP Web Proxy Auto-Discovery Service - [C:\Windows\system32\svchost.exe -k LocalService]
    1001 - Windows Management Instrumentation - [C:\Windows\system32\svchost.exe -k netsvcs]
    1001 - WLAN AutoConfig - [C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted]
    1001 - Windows Live ID Sign-in Assistant - ["C:\Program Files\Common Files\Microsoft Shared\Windows Live\WLIDSVC.EXE"]
    1001 - Security Center - [C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted]
    1001 - Windows Search - [C:\Windows\system32\SearchIndexer.exe /Embedding]
    1001 - Windows Update - [C:\Windows\system32\svchost.exe -k netsvcs]
    1001 - Windows Driver Foundation - User-mode Driver Framework - [C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted]
    11 - Windows Express
    1101 - System Score : 5.2
    1102 - Memory Score : 7.6
    1103 - CPU Score : 7.4
    1104 - Graphics Score : 5.2
    1105 - Gaming Score : 5.6
    1106 - Disk Score : 5.9
    12 - Event Log
    1201 - Time : 02/11/2014 06:56:26
    1202 - Source : Schannel
    1203 - Description : The following fatal alert was generated: 40. The internal error state is 107.
    1201 - Time : 02/11/2014 06:56:26
    1202 - Source : Schannel
    1203 - Description : An SSL 3.0 connection request was received from a remote client application, but none of the cipher suites supported by the client application are supported by the server. The SSL connection request has failed.
    1201 - Time : 02/11/2014 06:56:26
    1202 - Source : Schannel
    1203 - Description : The following fatal alert was generated: 40. The internal error state is 107.
    1201 - Time : 02/11/2014 06:56:26
    1202 - Source : Schannel
    1203 - Description : An SSL 3.0 connection request was received from a remote client application, but none of the cipher suites supported by the client application are supported by the server. The SSL connection request has failed.
    1201 - Time : 02/11/2014 06:56:25
    1202 - Source : Schannel
    1203 - Description : The following fatal alert was generated: 40. The internal error state is 107.
    1201 - Time : 02/11/2014 06:56:25
    1202 - Source : Schannel
    1203 - Description : An SSL 3.0 connection request was received from a remote client application, but none of the cipher suites supported by the client application are supported by the server. The SSL connection request has failed.
    1201 - Time : 02/11/2014 06:56:25
    1202 - Source : Schannel
    1203 - Description : The following fatal alert was generated: 40. The internal error state is 107.
    1201 - Time : 02/11/2014 06:56:25
    1202 - Source : Schannel
    1203 - Description : An SSL 3.0 connection request was received from a remote client application, but none of the cipher suites supported by the client application are supported by the server. The SSL connection request has failed.
    1201 - Time : 02/11/2014 05:49:20
    1202 - Source : Schannel
    1203 - Description : The following fatal alert was generated: 40. The internal error state is 107.
    1201 - Time : 02/11/2014 05:49:20
    1202 - Source : Schannel
    1203 - Description : An SSL 3.0 connection request was received from a remote client application, but none of the cipher suites supported by the client application are supported by the server. The SSL connection request has failed.
    End of file - 25529 Bytes.
    Does anything seen here determine what could cause these occasional lag spikes?

    On Tue, 11 Feb 2014 00:50:45 +0000, Brisnger wrote:
    Razer Game Booster Diagnostics Report v2.0  Version: 4.1.59.0
    Date: 2014/02/10 17:47:03
    This forum is the wrong forum for your question.
    Repost to one of the forums at:
    http://answers.microsoft.com
    Paul Adare - FIM CM MVP
    All that blue light from Orthanc at night? That was
    Saruman, trying to moderate
    -- news.admin.palantir-abuse.sightings.

  • Problem in Legend Map Request

    Hi All,
    I am generating a map request to get a legend in PDF format as follows.
    <?xml version="1.0" standalone="yes"?><map_request
    datasource="MYDATASOURCE" format="PDF_STREAM" width="1188" height="840"
    antialiase="true" srid="8292"><legend bgstyle="fill:#FFFFE8;stroke:#708090;"
    position="SOUTH_EAST" profile="SMALL">
    <column>
    <entry text="LEGEND WITH PROBLEM" is_title="true" />
    <entry style="" text="up to 444.306.878" />
    <entry style="" text="204.299.813 a 444.306.878" />
    <entry style="" text="138.180.596 a 204.299.813" />
    <entry style="" text="118.706.493 a 138.180.596" />
    <entry style="" text="100.910.715 a 118.706.493" />
    <entry style="" text="74.385.591 a 100.910.715" />
    <entry style="" text="38.539.881 a 74.385.591" />
    <entry style="" text="down to 38.539.881" />
    </column>
    </legend>
    </map_request>
    The problem is that the large numbers exceeds the legend size. This just happens with the PDF format.
    I dont want to use the LARGE profile because gets too big.
    Is there any workaround to this problem?
    Thanks.
    Cleber

    Hi Cleber,
    which MapViewer version are you using? This may be related with the PDF graphics library version. This library has been modified to better handle the legend texts. I tested your request and it appears to be OK with the current library. You can send me (by email) a picture of your legend, and I will confirm if this has been fixed.
    Joao

  • Text in legend in line chart

    Hello all.
    I have line chart with the legend. This legend contain text with length more then 20 characters. The text cuts off by some characters from the end, for example, it should be
    1. Test1Test2Test3
    2. Test4Test5Test6
    and it will be shown like
    1. Test1Test2Te
    2. Test4Test5Tes
    Changes in legend config window in Answers and in file cordalayout.cxml don't work.
    How else can I fix this problem?

    What OS is on your server? All browsers?
    I'm actually getting the exact opposite situation as you, I created legend items with really long text and they aren't being truncated at all. Even if I set the truncate value. I'm on Windows Server 2K3 and the same version of OBIEE.
    I'll keep testing to see if I can come up with something, but if someone else out there knows what's going on, I'd love to hear it.
    -Joe

  • Value in legend

    I have an pie graph and i want to see the value (50 and 40) in legend. This is possible?
    For example of legend:
    (blue) Open : 50
    (red) Close: 40
    Thank

    Add a table view in the compound layout and position it below the chart. To indicate color, you may add a column in the table as -
    case when open then blue .........end
    or
    add narrative view as
    (@3) nonbraking space @1 : nonbraking space @2 line break
    where 3 is the color column

  • How to change the text in the legend of a graph programmat​ically in labview

    I have many graphs in one plot and want to show the legend the name of the graph (i.e. the filename). How do I change the text in the legend programmatically?

    Create a property node for your graph. Use the property node "Active Plot" to define which plot (or line) you want to rename. Then write the new legend label to the property node "Plot.Name". See attached.
    Tim
    Attachments:
    legend.vi ‏12 KB

  • Voyager Legend will not work with my laptop

    I have an HP Pavilion dv6-3120us Entertainment Notebook PC with Windows 7(64-bit). I recently purchased a new bluetooth headset and am unable to get it to work with my laptop. The Previous headset was a Plantronics Voyager Pro which worked great with my laptop, all I had to do was pair it and that was that. My new headset is the Plantronics Voyager Legend and after pairing, it starts installing drivers and all but one are fine. 
            Bluetooth AV                                               Ready to use
            Bluetooth Remote Control                       Ready to use
            Bluetooth AV Remote Control Target   Ready to use
            Bluetooth Peripheral Device                   No Driver Found
            Bluetooth Hands-free                               Ready to use
    I've uninstalled, reinstalled several times and it didn't help, It shows that the device is paired, but doesn't reroute audio to the headset or the microphone. It shows in audio devices but says disconnected, when I click on 'connect', nothing happens and 'set as default' is grayed out and I cannot select it. I know that there is a separate bluetooth USB adapter available, but I'm using the headset mostly for my phone (which works fine) and occasionally my laptop so I don't really want to purchase it. I've already contacted Plantronics about the issue and this was their response:
    "Thank you for contacting Plantronics Technical Support.
    If you are using built in blue tooth and not our blue tooth USB adapter unfortunately we cannot assist you with your built in blue tooth, Plantronics does not supply drivers, here is our statement with regards to using built in blue tooth:
    If you are pairing the headset directly to your computer, the drivers that are required are for your computer's internal Bluetooth adapter. You will need the drivers supplied by your computer's manufacturer in order for you to use your Bluetooth headset as an audio device.
    Different computer manufacturers and computer models will use different internal Bluetooth adapters, so you'll have to contact your computer manufacturer to get those drivers. Most major computer manufacturers have a "Drivers" or "Drivers and Downloads" page on their web site in which you can enter your computer model in order to retrieve available drivers. You can typically find the Bluetooth drivers under the "Network" category. "
    I've checked for bluetooth driver updates and it says that none are available, I've also uninstalled and reinstalled the bluetooth drivers from the laptop. Sorry that this is a short novel, but I wanted to make sure to give all available details, any help or advice would be welcome. Thank you in advance.

    Hi Nt_winters,
    Thank you for all the information, it is very useful. I understand you are having an issue with HP Pavilion dv6-3120us Notebook with Windows 7 and your new Plantronics Voyager Legend. In the device manager are all unknown devices removed as well as the Bluetooth devices for the headset? Broadcom is recommended for Plantronics Voyager Legend headsets. Here is a link to that driver.
    Hope this helps.
    Thanks.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

Maybe you are looking for