{"id":2246,"date":"2024-10-17T13:06:50","date_gmt":"2024-10-17T13:06:50","guid":{"rendered":"http:\/\/localhost:10003\/?p=2246"},"modified":"2025-08-04T13:56:23","modified_gmt":"2025-08-04T13:56:23","slug":"anadir-mas-elementos-al-documento-parte-iv","status":"publish","type":"post","link":"https:\/\/xceed.com\/es\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/","title":{"rendered":"A\u00f1adir m\u00e1s elementos al documento - Parte IV"},"content":{"rendered":"<p class=\"wp-block-paragraph\">M\u00e1s informaci\u00f3n&nbsp;<a href=\"http:\/\/xceed.com\/en\/our-products\/product\/words-for-net\" target=\"_blank\" rel=\"noreferrer noopener\">Xceed Words para .NET<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Esta semana veremos c\u00f3mo a\u00f1adir gr\u00e1ficos a los documentos.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Gr\u00e1ficos<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Cuando se quiere llamar la atenci\u00f3n del lector, un gr\u00e1fico ofrece la posibilidad de mostrar informaci\u00f3n y datos de una forma m\u00e1s visual que una tabla.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Creaci\u00f3n de un gr\u00e1fico<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Actualmente hay 3 tipos de gr\u00e1ficos disponibles:&nbsp;<em>Gr\u00e1fico de barras, Gr\u00e1fico de l\u00edneas<\/em>&nbsp;y&nbsp;<em>Gr\u00e1fico circular.<\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a new BarChart\nvar c1 = new BarChart();\n\n\/\/ Create a new LineChart\nvar c2 = new LineChart();\n\n\/\/ Create a new PieChart\nvar c3 = new PieChart();\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Leyenda del gr\u00e1fico<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Un ChartLegend no es obligatorio, pero puede facilitar al lector la comprensi\u00f3n de los datos mostrados en el gr\u00e1fico. Para a\u00f1adir un ChartLegend se llama a la funci\u00f3n&nbsp;<em>A\u00f1adirLeyenda<\/em>&nbsp;en el gr\u00e1fico. Los par\u00e1metros a incluir son la posici\u00f3n del gr\u00e1fico (Inferior, Izquierda, Derecha, Superior o SuperiorDerecha), y si se permite que los elementos del gr\u00e1fico se superpongan a este ChartLegend (true\/false).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Add a ChartLegent\nc.AddLegend( ChartLegendPosition.Left, false );\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">La eliminaci\u00f3n del ChartLegend existente de un gr\u00e1fico se realiza llamando a su funci\u00f3n&nbsp;<em>EliminarLeyenda<\/em>&nbsp;m\u00e9todo.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Remove the ChartLegend\nc.RemoveLegend();\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Datos gr\u00e1ficos<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">En un escenario real, lo m\u00e1s probable es que tenga una base de datos de la que obtener los datos. Para nuestro ejemplo, crearemos algunos datos nosotros mismos utilizando una simple clase ChartData que contiene 2 propiedades: Categor\u00eda (cadena) y Gastos (doble).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create the data.\nvar canada = new List()\n{\n  new ChartData() { Category = \"Food\", Expenses = 100 },\n  new ChartData() { Category = \"Housing\", Expenses = 120 },\n  new ChartData() { Category = \"Transportation\", Expenses = 140 },\n  new ChartData() { Category = \"Health Care\", Expenses = 150 }\n};\nvar usa = new List()\n{\n  new ChartData() { Category = \"Food\", Expenses = 200 },\n  new ChartData() { Category = \"Housing\", Expenses = 150 },\n  new ChartData() { Category = \"Transportation\", Expenses = 110 },\n  new ChartData() { Category = \"Health Care\", Expenses = 100 }\n};\nvar brazil = new List()\n{\n  new ChartData() { Category = \"Food\", Expenses = 125 },\n  new ChartData() { Category = \"Housing\", Expenses = 80 },\n  new ChartData() { Category = \"Transportation\", Expenses = 110 },\n  new ChartData() { Category = \"Health Care\", Expenses = 60 }\n};\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;A continuaci\u00f3n, crearemos una serie con los datos y la a\u00f1adiremos al gr\u00e1fico llamando a su funci\u00f3n&nbsp;<em>A\u00f1adirSerie<\/em>&nbsp;m\u00e9todo.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create and add series by binding X and Y.\nvar s1 = new Series( \"Brazil\" );\ns1.Bind( brazil, \"Category\", \"Expenses\" );\nc.AddSeries( s1 );\n\nvar s2 = new Series( \"USA\" );\ns2.Bind( usa, \"Category\", \"Expenses\" );\nc.AddSeries( s2 );\n\nvar s3 = new Series( \"Canada\" );\ns3.Bind( canada, \"Category\", \"Expenses\" );\nc.AddSeries( s3 );\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">A\u00f1adir gr\u00e1ficos<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Una vez que el Gr\u00e1fico est\u00e1 listo, se puede a\u00f1adir a un documento llamando a&nbsp;<em>InsertarGr\u00e1fico<\/em>&nbsp;o&nbsp;<em>InsertChartAfterParagraph<\/em>&nbsp;en el Documento.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Create a new chart\nvar chart = new BarChart();\n\n\/\/ Add data to the chart\n\/\/ ...\n\n\/\/ Option 1: Insert the chart at the end of the document\ndocument.InsertChart( chart );\n\n\/\/ Option 2: Insert the chart after the specified paragraph in the document\nvar paragraph = document.paragraphs&#91; 3 ];\ndocument.InsertChart( chart , paragraph );\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Nota: Tanto el&nbsp;<em>InsertarGr\u00e1fico<\/em>&nbsp;y&nbsp;<em>InsertChartAfterParagraph<\/em>&nbsp;tambi\u00e9n admite 2 par\u00e1metros opcionales adicionales, para indicar una anchura y una altura para el gr\u00e1fico.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Eliminar gr\u00e1ficos<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">La eliminaci\u00f3n de un Gr\u00e1fico existente de un documento se realiza llamando a&nbsp;<em>Eliminar<\/em>&nbsp;en el XML del gr\u00e1fico.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code data-no-translation=\"\">\/\/ Remove a Chart\nchart.Xml.Remove();\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Para m\u00e1s informaci\u00f3n, consulte el&nbsp;<a href=\"https:\/\/doc.xceed.com\/xceed-document-libraries-for-net\/webframe.html#rootWelcome.html\" target=\"_blank\" rel=\"noreferrer noopener\">documentaci\u00f3n<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>En este cuarto tutorial de la serie, veremos c\u00f3mo a\u00f1adir gr\u00e1ficos a los documentos.<\/p>","protected":false},"author":2,"featured_media":2241,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[141,60],"tags":[],"class_list":["post-2246","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-all","category-tutorials"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Adding more elements to your Document \u2013 Part IV - Xceed Software<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/xceed.com\/es\/blog\/tutoriales\/anadir-mas-elementos-al-documento-parte-iv\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adding more elements to your Document \u2013 Part IV - Xceed Software\" \/>\n<meta property=\"og:description\" content=\"In this fourth tutorial of this series, we will look at how to add Charts to your documents.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/xceed.com\/es\/blog\/tutoriales\/anadir-mas-elementos-al-documento-parte-iv\/\" \/>\n<meta property=\"og:site_name\" content=\"Xceed Software\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-17T13:06:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-04T13:56:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png\" \/>\n\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alain Jreij\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alain Jreij\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/\"},\"author\":{\"name\":\"Alain Jreij\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\"},\"headline\":\"Adding more elements to your Document \u2013 Part IV\",\"datePublished\":\"2024-10-17T13:06:50+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/\"},\"wordCount\":303,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"articleSection\":[\"All\",\"Tutorials\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/\",\"name\":\"Adding more elements to your Document \u2013 Part IV - Xceed Software\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"datePublished\":\"2024-10-17T13:06:50+00:00\",\"dateModified\":\"2025-08-04T13:56:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/#primaryimage\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/blog_WDN.png\",\"width\":350,\"height\":350},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/xceed.com\\\/blog\\\/tutorials\\\/adding-more-elements-to-your-document-part-iv\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/xceed.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adding more elements to your Document \u2013 Part IV\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/xceed.com\\\/fr\\\/\",\"name\":\"Xceed Software\",\"description\":\"Provides tools for .NET, Windows Forms, WPF, Silverlight, and ASP.NET developers to create better applications.\",\"publisher\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/xceed.com\\\/fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#organization\",\"name\":\"Xceed Software\",\"alternateName\":\"Xceed Software\",\"url\":\"https:\\\/\\\/xceed.com\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/Untitled-design-24.png\",\"contentUrl\":\"https:\\\/\\\/xceed.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/Untitled-design-24.png\",\"width\":512,\"height\":512,\"caption\":\"Xceed Software\"},\"image\":{\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/xceed.com\\\/fr\\\/#\\\/schema\\\/person\\\/2d9169e6fd8ae4a8f58a9e1cc9a73778\",\"name\":\"Alain Jreij\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g\",\"caption\":\"Alain Jreij\"},\"url\":\"https:\\\/\\\/xceed.com\\\/es\\\/blog\\\/author\\\/jreijaxceed-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Adding more elements to your Document \u2013 Part IV - Xceed Software","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/xceed.com\/es\/blog\/tutoriales\/anadir-mas-elementos-al-documento-parte-iv\/","og_locale":"es_MX","og_type":"article","og_title":"Adding more elements to your Document \u2013 Part IV - Xceed Software","og_description":"In this fourth tutorial of this series, we will look at how to add Charts to your documents.","og_url":"https:\/\/xceed.com\/es\/blog\/tutoriales\/anadir-mas-elementos-al-documento-parte-iv\/","og_site_name":"Xceed Software","article_published_time":"2024-10-17T13:06:50+00:00","article_modified_time":"2025-08-04T13:56:23+00:00","og_image":[{"width":350,"height":350,"url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","type":"image\/png"}],"author":"Alain Jreij","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Alain Jreij","Est. reading time":"3 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/#article","isPartOf":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/"},"author":{"name":"Alain Jreij","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778"},"headline":"Adding more elements to your Document \u2013 Part IV","datePublished":"2024-10-17T13:06:50+00:00","dateModified":"2025-08-04T13:56:23+00:00","mainEntityOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/"},"wordCount":303,"commentCount":0,"publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","articleSection":["All","Tutorials"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/","url":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/","name":"Adding more elements to your Document \u2013 Part IV - Xceed Software","isPartOf":{"@id":"https:\/\/xceed.com\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/#primaryimage"},"image":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/#primaryimage"},"thumbnailUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","datePublished":"2024-10-17T13:06:50+00:00","dateModified":"2025-08-04T13:56:23+00:00","breadcrumb":{"@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/#primaryimage","url":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2024\/10\/blog_WDN.png","width":350,"height":350},{"@type":"BreadcrumbList","@id":"https:\/\/xceed.com\/blog\/tutorials\/adding-more-elements-to-your-document-part-iv\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/xceed.com\/"},{"@type":"ListItem","position":2,"name":"Adding more elements to your Document \u2013 Part IV"}]},{"@type":"WebSite","@id":"https:\/\/xceed.com\/fr\/#website","url":"https:\/\/xceed.com\/fr\/","name":"Xceed Software","description":"Proporciona herramientas para que los desarrolladores de .NET, Windows Forms, WPF, Silverlight y ASP.NET puedan crear mejores aplicaciones.","publisher":{"@id":"https:\/\/xceed.com\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/xceed.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/xceed.com\/fr\/#organization","name":"Xceed Software","alternateName":"Xceed Software","url":"https:\/\/xceed.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/xceed.com\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/xceed.com\/wp-content\/uploads\/2026\/07\/Untitled-design-24.png","contentUrl":"https:\/\/xceed.com\/wp-content\/uploads\/2026\/07\/Untitled-design-24.png","width":512,"height":512,"caption":"Xceed Software"},"image":{"@id":"https:\/\/xceed.com\/fr\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/xceed.com\/fr\/#\/schema\/person\/2d9169e6fd8ae4a8f58a9e1cc9a73778","name":"Alain Jreij","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/secure.gravatar.com\/avatar\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87ff2d1efbe1a868809d8d554724877b76941f668176489a42238d867ab8bf06?s=96&d=mm&r=g","caption":"Alain Jreij"},"url":"https:\/\/xceed.com\/es\/blog\/author\/jreijaxceed-com\/"}]}},"_links":{"self":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/2246","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/comments?post=2246"}],"version-history":[{"count":0,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/posts\/2246\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/media\/2241"}],"wp:attachment":[{"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/media?parent=2246"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/categories?post=2246"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/xceed.com\/es\/wp-json\/wp\/v2\/tags?post=2246"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}